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

testlibc: main.o test.o assert.o ctype.o
	$(CC) -o $@ *.o

assert.o: assert.c test.h

ctype.o: ctype.c test.h

test.o: test.c test.h

main.o: main.c test.h

clean:
	rm -f *.o testlibc