HardenedBSD/lib/libforms/examples/Makefile
1995-09-16 16:25:25 +00:00

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>