1
0
This commit is contained in:
dtb
2022-06-15 09:07:02 -04:00
parent 50f399b764
commit 86f1667699
2 changed files with 43 additions and 33 deletions

View File

@@ -102,10 +102,10 @@ 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
$(CC) $(CFLAGS) -c -o build/str.o src/str.c
str: libio str.o
$(CC) $(CFLAGS) -o bin/str lib/libio.o src/str.o
$(CC) $(CFLAGS) -o bin/str build/libio.o build/str.o
sleep.o: libio sysexits src/sleep.c usefulmacros
$(CC) $(CFLAGS) -c -o build/sleep.o src/sleep.c