Deleted Added
full compact
Makefile (8576) Makefile (8601)
1PROG= sysinstall
2NOMAN= yes
3CLEANFILES= makedevs.c rtermcap
4
5.PATH: ${.CURDIR}/../disklabel
6
7SRCS= globals.c main.c dmenu.c menus.c \
8 misc.c msg.c system.c install.c \

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

57 file2c 'const char termcap_cons25l1[] = {' ',0};' \
58 >> makedevs.tmp
59 ./rtermcap cons25l1-m | \
60 file2c 'const char termcap_cons25l1_m[] = {' ',0};' \
61 >> makedevs.tmp
62 ./rtermcap vt100 | \
63 file2c 'const char termcap_vt100[] = {' ',0};' \
64 >> makedevs.tmp
1PROG= sysinstall
2NOMAN= yes
3CLEANFILES= makedevs.c rtermcap
4
5.PATH: ${.CURDIR}/../disklabel
6
7SRCS= globals.c main.c dmenu.c menus.c \
8 misc.c msg.c system.c install.c \

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

57 file2c 'const char termcap_cons25l1[] = {' ',0};' \
58 >> makedevs.tmp
59 ./rtermcap cons25l1-m | \
60 file2c 'const char termcap_cons25l1_m[] = {' ',0};' \
61 >> makedevs.tmp
62 ./rtermcap vt100 | \
63 file2c 'const char termcap_vt100[] = {' ',0};' \
64 >> makedevs.tmp
65 file2c 'const u_char font_iso_8x14[] = {' '};' \
66 < ${.CURDIR}/../../share/syscons/fonts/iso-8x14.fnt \
65 cat ${.CURDIR}/../../share/syscons/fonts/iso-8x16.fnt | \
66 uudecode | file2c 'const u_char font_iso_8x16[] = {' '};' \
67 >> makedevs.tmp
67 >> makedevs.tmp
68 file2c 'const u_char font_cp850_8x14[] = {' '};' \
69 < ${.CURDIR}/../../share/syscons/fonts/cp850-8x14.fnt \
68 cat ${.CURDIR}/../../share/syscons/fonts/cp850-8x16.fnt | \
69 uudecode | file2c 'const u_char font_cp850_8x16[] = {' '};' \
70 >> makedevs.tmp
70 >> makedevs.tmp
71 file2c 'const u_char font_koi8_r_8x14[] = {' '};' \
72 < ${.CURDIR}/../../share/syscons/fonts/koi8-r-8x14.fnt \
71 cat ${.CURDIR}/../../share/syscons/fonts/koi8-r-8x16.fnt | \
72 uudecode | file2c 'const u_char font_koi8_r_8x16[] = {' '};' \
73 >> makedevs.tmp
73 >> makedevs.tmp
74 file2c 'const u_char koi8_r2cp866[] = {' '};' \
75 < ${.CURDIR}/../../share/syscons/scrnmaps/koi8-r2cp866 \
76 >> makedevs.tmp
77 mv makedevs.tmp makedevs.c
78
79rtermcap: ${.CURDIR}/rtermcap.c
80 ${CC} -o rtermcap ${.CURDIR}/rtermcap.c -ltermcap
81
82.include <bsd.prog.mk>
83
74 mv makedevs.tmp makedevs.c
75
76rtermcap: ${.CURDIR}/rtermcap.c
77 ${CC} -o rtermcap ${.CURDIR}/rtermcap.c -ltermcap
78
79.include <bsd.prog.mk>
80