summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9bf2ab7c9d62c775c3bd51d6ffa95a0eb5d38a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

.PHONY: test clean

compll.o: compll.c compll.h
	gcc -Wall -Wextra -g -c compll.c

compll: compll.c compll.h
	gcc -Wall -Wextra -g -DDEBUG compll.c -o compll
	./compll

clean:
	rm -f compll.o compll
	${MAKE} -C test clean

test:
	${MAKE} -C test test