957bdf511e
1. Use new dialog menu hacks (no strings, just arrays of dialogMenuItem structs) so that I can create composite menus with radio/checkbox/... items in them, removing some long-standing UI bogons in various menus. This work isn't finished yet, but will be done in two phases. This is phase one. 2. Remove all the script installation stuff. I never got time to document it, it was arcane and it just complicated much of the code. There are better ways of doing this if I want to do auto-driven installations later. 3. Remove much dead code and otherwise attempt to remove as much historical grot as possible so that this code is easier to hack on. This is also a two-stage process, phase one of which is now complete.
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
PROG= sysinstall
|
|
NOMAN= yes
|
|
CLEANFILES= makedevs.c rtermcap
|
|
|
|
.PATH: ${.CURDIR}/../disklabel ${.CURDIR}/../../usr.bin/cksum
|
|
|
|
SRCS= anonFTP.c apache.c attr.c cdrom.c command.c config.c \
|
|
devices.c disks.c dist.c dmenu.c doc.c dos.c floppy.c ftp.c \
|
|
ftp_strat.c globals.c index.c install.c installFinal.c \
|
|
installUpgrade.c label.c lndir.c main.c makedevs.c media.c \
|
|
menus.c misc.c msg.c network.c nfs.c options.c \
|
|
package.c system.c tape.c tcpip.c termcap.c ufs.c variable.c wizard.c
|
|
|
|
CFLAGS+= -Wall -I${.CURDIR}/../../gnu/lib/libdialog
|
|
|
|
DPADD= ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO} ${LIBUTIL} ${LIBDISK}
|
|
LDADD= -ldialog -lncurses -lmytinfo -lutil -ldisk
|
|
|
|
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>
|