blob: b9d484f46ce703619011ae3dab75ce7f201e854f (
plain)
1
2
3
4
5
6
7
8
|
DIAG_FLAGS ?= -Wall -W -Wstrict-prototypes -Wmissing-prototypes -pedantic
OPT_FLAGS ?= -O2
CFLAGS ?= $(OPT_FLAGS) $(DIAG_FLAGS)
testsp: safepath.o
clean:
rm -f testsp safepath.o
|