diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,14 +1,14 @@ -CS=ast.c com.c dis.c parser.c read.c val.c vm.c -HS=ast.h dis.h parser.h read.h val.h vm.h +CS=ast.c com.c dis.c prs.c read.c val.c vm.c +HS=ast.h dis.h prs.h read.h val.h vm.h CFLAGS=-O3 -Wall -Wpedantic -Werror=implicit-function-declaration -badthing: $(CS) $(HS) - $(CC) $(CFLAGS) -o badthing $(CS) +bþ: $(CS) $(HS) + $(CC) $(CFLAGS) -o bþ $(CS) -parser.c: grammar.peg - packcc -o parser grammar.peg +prs.c: g.peg + packcc -o prs g.peg clean: - rm badthing parser.c + rm bþ prs.c prs.h .PHONY: clean |