summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-01-01 09:47:35 -0500
committerJakob Kaivo <jkk@ung.org>2019-01-01 09:47:35 -0500
commit47a2bf9daa50750a214a53d8968eb28ef816fe44 (patch)
treecad1133ce0f2549ed6add4612e4e74528667e8ad /Makefile
parent7f8a105b263cbdccf14be5f5f6bf306fbe217564 (diff)
add locale tests
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