freebsd-src/lib/Makefile
Paul Richards 0d18307afc The start of a forms editor library. Currently implements text and
input fields. It reads a template file passed to init_forms(char *)
and creates a curses based form editor. See the examples directory
for a basic demo.
1994-11-13 06:45:44 +00:00

24 lines
459 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/4/93
.if ${MACHINE} == "tahoe"
SUBDIR=csu/tahoe.pcc
.elif ${MACHINE} == "vax"
SUBDIR=csu/vax.pcc
.else
SUBDIR=csu/${MACHINE}
.endif
# XXX MISSING: libmp libplot
SUBDIR+= libc libcompat libcrypt libcurses libedit libf2c libforms \
libkvm libmd libmytinfo libncurses libresolv librpcsvc libskey \
libtelnet libtermcap libutil liby
.if !defined(WANT_MSUN)
SUBDIR+= libm
.else
SUBDIR+= msun
.endif
.include <bsd.subdir.mk>