diff options
author | scratko <m@scratko.xyz> | 2024-06-23 22:35:56 +0300 |
---|---|---|
committer | scratko <m@scratko.xyz> | 2024-11-23 21:11:27 +0300 |
commit | 52f877a23cd26f57393e20b6fffef0dc4e093315 (patch) | |
tree | 2e638d1c700a3c7d7eaabca2316d0402e41e8d48 /Makefile | |
parent | 54679d85b1f2c1349bcbbc76b10d57a1e5137f23 (diff) | |
download | shell-52f877a23cd26f57393e20b6fffef0dc4e093315.tar.gz shell-52f877a23cd26f57393e20b6fffef0dc4e093315.tar.bz2 shell-52f877a23cd26f57393e20b6fffef0dc4e093315.zip |
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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |