0d18307afc
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.
24 lines
459 B
Makefile
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>
|