back to scratko.xyz
summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-06-03 14:40:07 +0300
committerscratko <m@scratko.xyz>2024-06-03 17:22:52 +0300
commitc9d02770f42339b6cc741191cee87e77b914b00b (patch)
treed2a1d913dc0a33324e6f9fb98bf89cc59470d14c /Makefile
parent859c929333b0c17f1b6027b17cc30bdf4763e6e2 (diff)
downloadshell-c9d02770f42339b6cc741191cee87e77b914b00b.tar.gz
shell-c9d02770f42339b6cc741191cee87e77b914b00b.tar.bz2
shell-c9d02770f42339b6cc741191cee87e77b914b00b.zip
Shell-IV release
Redirecting standard input-output streams.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8d28bdd..3fe276d 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,12 @@ OBJMODULES = $(SRCMODULES:.c=.o)
CC = gcc
CFLAGS = -Wall -g -c
-all: shell-III
+all: shell-IV
%.o: %.с %.h
$(CC) $(CFLAGS) $< -o $@
-shell-III: $(OBJMODULES)
+shell-IV: $(OBJMODULES)
$(CC) $(LIBS) $^ -o $@
-include deps.mk