=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tset/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/tset/Makefile 1998/07/25 19:27:37 1.5 --- src/usr.bin/tset/Makefile 1998/11/16 03:08:40 1.6 *************** *** 1,11 **** ! # $OpenBSD: Makefile,v 1.5 1998/07/25 19:27:37 millert Exp $ PROG= tset ! SRCS= map.c misc.c set.c term.c tset.c wrterm.c ! ! DPADD= ${LIBOLDCURSES} ! LDADD= -locurses LINKS= ${BINDIR}/tset ${BINDIR}/reset MLINKS= tset.1 reset.1 .include --- 1,19 ---- ! # $OpenBSD: Makefile,v 1.6 1998/11/16 03:08:40 millert Exp $ PROG= tset ! SRCS= tset.c dump_entry.c termcap.c ! DPADD= ${LIBCURSES} ! LDADD= -lcurses ! CURSES= ${.CURDIR}/../../lib/libcurses ! TIC= ${.CURDIR}/../tic ! CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I. ! .PATH: ${TIC} LINKS= ${BINDIR}/tset ${BINDIR}/reset MLINKS= tset.1 reset.1 + + beforedepend: termsort.c + + termsort.c: ${TIC}/MKtermsort.sh + sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET} .include