forked from github/server
8 lines
188 B
Makefile
8 lines
188 B
Makefile
|
WARN = -Wall -ansi -pedantic -Wno-char-subscripts -Wno-parentheses
|
||
|
DEBUG = -g ${WARN}
|
||
|
LIBS = -lncurses -lm -lefence
|
||
|
|
||
|
CFLAGS = ${DEBUG} -I.. -I/usr/local/include ${OPT}
|
||
|
LDFLAGS = ${DEBUG}
|
||
|
|