Deleted Added
full compact
Makefile (27433) Makefile (27798)
1PROG= sysinstall
2NOMAN= yes
3BINDIR=/stand
4
5CLEANFILES+= makedevs.c rtermcap rtermcap.tmp dumpnlist
6CLEANFILES+= keymap.tmp keymap.h
7
8.PATH: ${.CURDIR}/../disklabel ${.CURDIR}/../../usr.bin/cksum

--- 16 unchanged lines hidden (view full) ---

25.endif
26
27DPADD= ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO} ${LIBUTIL} ${LIBDISK} ${LIBFTPIO}
28LDADD= -ldialog -lncurses -lmytinfo -lutil -ldisk -lftpio
29
30makedevs.c: Makefile rtermcap keymap.h
31 rm -f makedevs.tmp
32 echo '#include <sys/types.h>' > makedevs.tmp
1PROG= sysinstall
2NOMAN= yes
3BINDIR=/stand
4
5CLEANFILES+= makedevs.c rtermcap rtermcap.tmp dumpnlist
6CLEANFILES+= keymap.tmp keymap.h
7
8.PATH: ${.CURDIR}/../disklabel ${.CURDIR}/../../usr.bin/cksum

--- 16 unchanged lines hidden (view full) ---

25.endif
26
27DPADD= ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO} ${LIBUTIL} ${LIBDISK} ${LIBFTPIO}
28LDADD= -ldialog -lncurses -lmytinfo -lutil -ldisk -lftpio
29
30makedevs.c: Makefile rtermcap keymap.h
31 rm -f makedevs.tmp
32 echo '#include <sys/types.h>' > makedevs.tmp
33 ./rtermcap ansi | \
34 file2c 'const char termcap_ansi[] = {' ',0};' \
35 >> makedevs.tmp
33 ./rtermcap cons25 | \
34 file2c 'const char termcap_cons25[] = {' ',0};' \
35 >> makedevs.tmp
36 ./rtermcap cons25-m | \
37 file2c 'const char termcap_cons25_m[] = {' ',0};' \
38 >> makedevs.tmp
39 ./rtermcap cons25r | \
40 file2c 'const char termcap_cons25r[] = {' ',0};' \

--- 39 unchanged lines hidden ---
36 ./rtermcap cons25 | \
37 file2c 'const char termcap_cons25[] = {' ',0};' \
38 >> makedevs.tmp
39 ./rtermcap cons25-m | \
40 file2c 'const char termcap_cons25_m[] = {' ',0};' \
41 >> makedevs.tmp
42 ./rtermcap cons25r | \
43 file2c 'const char termcap_cons25r[] = {' ',0};' \

--- 39 unchanged lines hidden ---