dfe96532e9
add some error checking to it and clean this up a bit.
17 lines
216 B
Makefile
17 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>
|