aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5e50c9c435fb8a8972315fd242a98eb413753daf (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 utils.h
	cc $(CFLAGS) $(OFLAGS) $< -o $@

.PHONY: all clean