blob: eae2d13290eee79d89ca6b1c33ab4ea628f9f786 (
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
cc $(CFLAGS) $(OFLAGS) $< -o $@
.PHONY: all clean
|