aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b6eeb333a717eb446496f4b8fdaf975d3bd4a870 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: cibic

run: 
	./cibic

cibic: lex.yy.c cibic.tab.c
	gcc -o cibic lex.yy.c cibic.tab.c
lex.yy.c: cibic.l
	flex cibic.l
cibic.tab.c: cibic.y
	bison -d cibic.y

clean:
	rm -f cibic lex.yy.c cibic.tab.c