back to scratko.xyz
summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-06-23 22:35:56 +0300
committerscratko <m@scratko.xyz>2024-06-23 23:40:20 +0300
commit821b146c54330cecba3ed2cc03a0f71ad83e540f (patch)
tree866fa9808cba7703aba4ce8c81a59c9b2eae76a8 /Makefile
parentef4604d9c146dbab1a653f66209103b74e6feb36 (diff)
downloadshell-master.tar.gz
shell-master.tar.bz2
shell-master.zip
Shell-VI releaseHEADshell-VImaster
Running processes in a single pgid. Changing foreground group to the group of running processes (if readline doesn't end with &).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2bbac5e..9aa167e 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,12 @@ OBJMODULES = $(SRCMODULES:.c=.o)
CC = gcc
CFLAGS = -Wall -g -c
-all: shell-edit
+all: shell-VI
%.o: %.с %.h
$(CC) $(CFLAGS) $< -o $@
-shell-edit: $(OBJMODULES)
+shell-VI: $(OBJMODULES)
$(CC) $(LIBS) $^ -o $@
-include deps.mk