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-11-23 21:11:27 +0300
commit52f877a23cd26f57393e20b6fffef0dc4e093315 (patch)
tree2e638d1c700a3c7d7eaabca2316d0402e41e8d48 /Makefile
parent54679d85b1f2c1349bcbbc76b10d57a1e5137f23 (diff)
downloadshell-52f877a23cd26f57393e20b6fffef0dc4e093315.tar.gz
shell-52f877a23cd26f57393e20b6fffef0dc4e093315.tar.bz2
shell-52f877a23cd26f57393e20b6fffef0dc4e093315.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