bp/Makefile

14 lines
203 B
Makefile
Raw Normal View History

2020-09-07 23:05:38 -07:00
PREFIX=
CFLAGS=-Wall -Wextra -pedantic -Wmissing-prototypes -Wstrict-prototypes
OFLAGS=-O3
all: bpeg
clean:
rm -f bpeg
2020-09-07 23:34:41 -07:00
bpeg: bpeg.c bpeg.h utils.h
2020-09-07 23:05:38 -07:00
cc $(CFLAGS) $(OFLAGS) $< -o $@
.PHONY: all clean