mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
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.
17 lines
264 B
Makefile
17 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>
|