5326bef3de
This looks like it was developed offline, and is being spammed over the top of the existing. "That's fine by me! I dont really care how you do it, just get it in there..." said Jordan in a conversation a short while ago...
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
PROG= sysinstall
|
|
NOMAN= yes
|
|
CLEANFILES= makedevs.c rtermcap
|
|
|
|
.PATH: ${.CURDIR}/../disklabel ${.CURDIR}/../../usr.bin/cksum
|
|
|
|
SRCS= attr.c cdrom.c command.c config.c decode.c devices.c disks.c dist.c \
|
|
dmenu.c dos.c floppy.c ftp.c ftp_strat.c globals.c install.c label.c \
|
|
main.c makedevs.c media.c menus.c misc.c msg.c network.c nfs.c system.c tape.c \
|
|
tcpip.c termcap.c ufs.c variable.c wizard.c
|
|
|
|
|
|
CFLAGS+= -Wall -I${.CURDIR}/../libdisk \
|
|
-I${.CURDIR}/../../gnu/lib/libdialog
|
|
|
|
LDADD= -ldialog -lncurses -lmytinfo -lutil
|
|
.if exists(${.CURDIR}/../libdisk/obj)
|
|
LDADD+= -L${.CURDIR}/../libdisk/obj -ldisk
|
|
.else
|
|
LDADD+= -L${.CURDIR}/../libdisk -ldisk
|
|
.endif
|
|
|
|
DPADD= ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO} ${LIBUTIL}
|
|
|
|
makedevs.c: Makefile rtermcap
|
|
rm -f makedevs.tmp
|
|
echo '#include <sys/types.h>' > makedevs.tmp
|
|
./rtermcap cons25 | \
|
|
file2c 'const char termcap_cons25[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
./rtermcap cons25-m | \
|
|
file2c 'const char termcap_cons25_m[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
./rtermcap cons25r | \
|
|
file2c 'const char termcap_cons25r[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
./rtermcap cons25r-m | \
|
|
file2c 'const char termcap_cons25r_m[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
./rtermcap cons25l1 | \
|
|
file2c 'const char termcap_cons25l1[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
./rtermcap cons25l1-m | \
|
|
file2c 'const char termcap_cons25l1_m[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
./rtermcap vt100 | \
|
|
file2c 'const char termcap_vt100[] = {' ',0};' \
|
|
>> makedevs.tmp
|
|
mv makedevs.tmp makedevs.c
|
|
|
|
rtermcap: ${.CURDIR}/rtermcap.c
|
|
${CC} -o rtermcap ${.CURDIR}/rtermcap.c -ltermcap
|
|
|
|
testftp: ftp.c
|
|
cc -o testftp -I../libdisk -DSTANDALONE_FTP ftp.c
|
|
|
|
.include <bsd.prog.mk>
|
|
|