diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-10-01 21:35:57 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-10-01 21:35:57 -0400 |
commit | 640fecc377a8b1f67946243f028e8a6a7fa9e281 (patch) | |
tree | 36e6b165d76f4d431f012c642be36ba807e0f7a2 /src/Makefile | |
parent | 94d2ec943df855e7f156b3ca09c89461e86b2cea (diff) |
add EXTRA_BUILTINS so everything works
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 56c54ca..7813a7f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,6 +2,8 @@ all: bosix +CFLAGS=-Wall -Wextra -Wpedantic + OBJS= ar.o asa.o \ basename.o \ cal.o cat.o chgrp.o chmod.o chown.o cksum.o cmp.o cp.o crontab.o ctags.o \ @@ -25,5 +27,7 @@ OBJS= ar.o asa.o \ bosix: $(OBJS) $(CC) -o $@ $(OBJS) -ll -ly +sh.o: sh.c mains.h builtins.h + clean: rm -f bosix *.o |