From 47a2bf9daa50750a214a53d8968eb28ef816fe44 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 1 Jan 2019 09:47:35 -0500 Subject: add locale tests --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.1