mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
16 lines
216 B
Makefile
16 lines
216 B
Makefile
PROG = test
|
|
NOMAN = yet
|
|
|
|
SRCS = test.c
|
|
|
|
CFLAGS =
|
|
|
|
.if exists(${.CURDIR}/../obj)
|
|
FORMDIR=${.CURDIR}/../obj
|
|
.else
|
|
FORMDIR=${.CURDIR}/..
|
|
.endif
|
|
|
|
LDADD = -L${FORMDIR} -lforms -lncurses -lmytinfo
|
|
|
|
.include <bsd.prog.mk>
|