mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 12:53:33 +00: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>
|