be7d950dc8
than at compile time. Should have same functionality as old libforms but with new mechanism. Lots of new features that use the new mechanism are still to be added.
18 lines
264 B
Makefile
18 lines
264 B
Makefile
PROG = example
|
|
NOMAN = yet
|
|
|
|
SRCS = example.c
|
|
|
|
CFLAGS = -g -static
|
|
|
|
.if exists(${.CURDIR}/../obj)
|
|
FORMDIR=${.CURDIR}/../obj
|
|
.else
|
|
FORMDIR=${.CURDIR}/..
|
|
.endif
|
|
|
|
LDADD = -L${FORMDIR} -lforms -lncurses -lmytinfo -ll
|
|
DPADD = /usr/lib/libforms.a
|
|
|
|
.include <bsd.prog.mk>
|