back to scratko.xyz
summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-05-26 17:09:25 +0300
committerscratko <m@scratko.xyz>2024-05-26 17:09:25 +0300
commit859c929333b0c17f1b6027b17cc30bdf4763e6e2 (patch)
tree3b6dfe7e03644927d078f2c386d48fe5bde47302 /Makefile
parentfb322edd72bebddee1a9828baec2f8bc83666ddf (diff)
downloadshell-III.tar.gz
shell-III.tar.bz2
shell-III.zip
Shell-III releaseshell-III
Added the ability to run programs in the background. Added tokens for future releases.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0fc988b..8d28bdd 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,12 @@ OBJMODULES = $(SRCMODULES:.c=.o)
CC = gcc
CFLAGS = -Wall -g -c
-all: shell-II
+all: shell-III
%.o: %.с %.h
$(CC) $(CFLAGS) $< -o $@
-shell-II: $(OBJMODULES)
+shell-III: $(OBJMODULES)
$(CC) $(LIBS) $^ -o $@
-include deps.mk