summaryrefslogtreecommitdiff
path: root/Makefile
blob: cf841026c01e1cb2d36684fdd27117de8925038b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC=c89
CFLAGS=-Wall -Wextra -Wpedantic

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

clean:
	rm -f *.o testlibc