summaryrefslogtreecommitdiff
path: root/Makefile
blob: 02a5b97da7cbf7ad198326934090f6b41aa9daba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CS=ast.c com.c dis.c ht.c mem.c prs.c read.c val.c vm.c
HS=ast.h       dis.h ht.h mem.h prs.h read.h val.h vm.h
CFLAGS=-O3 -Wall -Wpedantic -Werror=implicit-function-declaration

bþ: $(CS) $(HS)
	$(CC) $(CFLAGS) -o bþ $(CS)

prs.c: g.peg
	packcc -o prs g.peg

clean:
	rm bþ prs.c prs.h

.PHONY: clean