summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/Makefile
blob: c70dfc46292dfaf9671cdfc705a7a23baf29c60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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 lang.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}

.if exists(${.CURDIR}/../../share/syscons/scrnmaps/obj)
MKSCRNMAP=${.CURDIR}/../../share/syscons/scrnmaps/obj/koi8-r2cp866.mk
.else
MKSCRNMAP=${.CURDIR}/../../share/syscons/scrnmaps/koi8-r2cp866.mk
.endif

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
	uudecode < ${.CURDIR}/../../share/syscons/fonts/iso-8x16.fnt \
		&& file2c 'const u_char font_iso_8x16[] = {' '};' \
		< iso-8x16 >> makedevs.tmp
	rm iso-8x16
	uudecode < ${.CURDIR}/../../share/syscons/fonts/cp850-8x16.fnt \
		&& file2c 'const u_char font_cp850_8x16[] = {' '};' \
		< cp850-8x16 >> makedevs.tmp
	rm cp850-8x16
	uudecode < ${.CURDIR}/../../share/syscons/fonts/cp866-8x16.fnt \
		&& file2c 'const u_char font_cp866_8x16[] = {' '};' \
		< cp866-8x16 >> makedevs.tmp
	rm cp866-8x16
	${MKSCRNMAP} koi8-r2cp866 \
		&& file2c 'const u_char koi8_r2cp866[] = {' '};' \
		< koi8-r2cp866 >> makedevs.tmp
	rm koi8-r2cp866
	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>

OpenPOWER on IntegriCloud