blob: 205b8c28d4e89476e945b4de58ef5d5c48a3e70b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PREFIX=
CFLAGS=-Wall -Wextra -pedantic -Wmissing-prototypes -Wstrict-prototypes
G ?=
O ?= -O3
all: bpeg
clean:
rm -f bpeg
bpeg: bpeg.c bpeg.h utils.h
cc $(CFLAGS) $(G) $(O) $< -o $@
.PHONY: all clean
|