aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
blob: 6599d016d39c41efd105d29983fe483bba9b0478 (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-g -Wall

test-lexing: test-lexing.o tokenize.o
	gcc -o $@ test-lexing.o tokenize.o

test-lexing.o: token.h
tokenize.o: token.h

clean:
	rm -f *.o