13 lines
253 B
Makefile
13 lines
253 B
Makefile
CFLAGS:=-std=c99 -O2 -Wall -Wextra -Wpedantic -Wvla -Wshadow -Wundef
|
|
CPPFLAGS:=-D_FORTIFY_SOURCE=2
|
|
|
|
SRC.dir:=src/
|
|
SRC:=$(shell find ${SRC.dir} -iname '*.c')
|
|
OBJ:=$(subst .c,.o,${SRC})
|
|
|
|
%.o: %.c
|
|
${COMPILE.c} $< -o $@
|
|
|
|
hl: ${OBJ}
|
|
${LINK.c} ${OBJ} -o $@
|