aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: e1ef268d806e0d3a71c50fb0c80e688946159b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
PREFIX=
CFLAGS=-Wall -Wextra -pedantic -Wmissing-prototypes -Wstrict-prototypes
OFLAGS=-O3

all: bpeg

clean:
	rm -f bpeg

bpeg: bpeg.c bpeg.h vm.h utils.h
	cc $(CFLAGS) $(OFLAGS) $< -o $@

.PHONY: all clean