diff options
author | scratko <m@scratko.xyz> | 2024-06-23 22:35:56 +0300 |
---|---|---|
committer | scratko <m@scratko.xyz> | 2024-06-23 23:40:20 +0300 |
commit | 821b146c54330cecba3ed2cc03a0f71ad83e540f (patch) | |
tree | 866fa9808cba7703aba4ce8c81a59c9b2eae76a8 /Makefile | |
parent | ef4604d9c146dbab1a653f66209103b74e6feb36 (diff) | |
download | shell-821b146c54330cecba3ed2cc03a0f71ad83e540f.tar.gz shell-821b146c54330cecba3ed2cc03a0f71ad83e540f.tar.bz2 shell-821b146c54330cecba3ed2cc03a0f71ad83e540f.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 |