bp/Makefile

15 lines
206 B
Makefile
Raw Normal View History

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