diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-01-01 09:47:35 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-01-01 09:47:35 -0500 |
commit | 47a2bf9daa50750a214a53d8968eb28ef816fe44 (patch) | |
tree | cad1133ce0f2549ed6add4612e4e74528667e8ad /Makefile | |
parent | 7f8a105b263cbdccf14be5f5f6bf306fbe217564 (diff) |
add locale tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |