1
0
This commit is contained in:
dtb
2022-06-14 17:37:48 -04:00
parent 6004d654ea
commit f6633f05db
2 changed files with 11 additions and 6 deletions

View File

@@ -95,8 +95,11 @@ simexec.o: libio sysexits src/simexec.c
simexec: libio simexec.o
$(CC) $(CFLAGS) -o bin/simexec build/libio.o build/simexec.o
streq: sysexits src/streq.c usefulmacros
$(CC) $(CFLAGS) -o bin/streq src/streq.c
streq.o: libio sysexits src/streq.c
$(CC) $(CFLAGS) -c -o build/streq.o src/streq.c
streq: libio streq.o
$(CC) $(CFLAGS) -o bin/streq build/libio.o build/streq.o
str.o: src/str.c
$(CC) $(CFLAGS) -o build/str.o src/str.c