Deleted Added
full compact
Makefile (96462) Makefile (100313)
1# Makefile for libdialog
1# Makefile for libdialog
2# $FreeBSD: head/gnu/lib/libdialog/Makefile 96462 2002-05-12 16:01:00Z ru $
2# $FreeBSD: head/gnu/lib/libdialog/Makefile 100313 2002-07-18 12:07:49Z ru $
3
4LIB= dialog
5INCS= dialog.h
6MAN= dialog.3
7
8SHLIB_MAJOR= 4
9SHLIB_MINOR= 0
10SRCS= kernel.c rc.c checklist.c inputbox.c menubox.c msgbox.c \

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

19CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE
20
21LDADD+= -lncurses
22DPADD+= ${LIBNCURSES}
23
24.if !defined(NOHTML)
25afterinstall:
26.for file in ${EXAMPLES}
3
4LIB= dialog
5INCS= dialog.h
6MAN= dialog.3
7
8SHLIB_MAJOR= 4
9SHLIB_MINOR= 0
10SRCS= kernel.c rc.c checklist.c inputbox.c menubox.c msgbox.c \

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

19CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE
20
21LDADD+= -lncurses
22DPADD+= ${LIBNCURSES}
23
24.if !defined(NOHTML)
25afterinstall:
26.for file in ${EXAMPLES}
27 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
27 ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
28 ${.CURDIR}/TESTS/${file} ${DESTDIR}/usr/share/examples/libdialog
29.endfor
30.endif
31
32MLINKS+=dialog.3 draw_shadow.3 dialog.3 draw_box.3 \
33 dialog.3 line_edit.3 dialog.3 strheight.3 \
34 dialog.3 strwidth.3 dialog.3 dialog_create_rc.3 \
35 dialog.3 dialog_yesno.3 dialog.3 dialog_noyes.3 \

--- 14 unchanged lines hidden ---
28 ${.CURDIR}/TESTS/${file} ${DESTDIR}/usr/share/examples/libdialog
29.endfor
30.endif
31
32MLINKS+=dialog.3 draw_shadow.3 dialog.3 draw_box.3 \
33 dialog.3 line_edit.3 dialog.3 strheight.3 \
34 dialog.3 strwidth.3 dialog.3 dialog_create_rc.3 \
35 dialog.3 dialog_yesno.3 dialog.3 dialog_noyes.3 \

--- 14 unchanged lines hidden ---