summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9d01eb8..cf84102 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,15 @@
CC=c89
CFLAGS=-Wall -Wextra -Wpedantic
-testlibc: main.o test.o assert.o ctype.o
+testlibc: main.o test.o assert.o ctype.o locale.o
$(CC) -o $@ *.o
assert.o: assert.c test.h
ctype.o: ctype.c test.h
+locale.o: locale.c test.h
+
test.o: test.c test.h
main.o: main.c test.h