mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 08:00:48 +01:00
18 lines
271 B
Makefile
18 lines
271 B
Makefile
PROG = example
|
|
NOMAN = yet
|
|
|
|
SRCS = example.c
|
|
|
|
CFLAGS = -static #-g
|
|
|
|
.if exists(${.CURDIR}/../obj)
|
|
FORMDIR=${.CURDIR}/../obj
|
|
.else
|
|
FORMDIR=${.CURDIR}/..
|
|
.endif
|
|
|
|
LDADD = -L${FORMDIR} -lforms -lncurses -lmytinfo -ll
|
|
DPADD = ${LIBFORMS} ${LIBNCURSES}
|
|
|
|
.include <bsd.prog.mk>
|