[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / tset

Annotation of src/usr.bin/tset/Makefile, Revision 1.7

1.7     ! millert     1: #      $OpenBSD: Makefile,v 1.6 1998/11/16 03:08:40 millert Exp $
1.1       deraadt     2:
                      3: PROG=  tset
1.6       millert     4: SRCS=  tset.c dump_entry.c termcap.c
                      5: DPADD= ${LIBCURSES}
                      6: LDADD= -lcurses
                      7: CURSES= ${.CURDIR}/../../lib/libcurses
                      8: TIC= ${.CURDIR}/../tic
                      9: CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
1.7     ! millert    10: CLEANFILES+= termsort.c
1.6       millert    11: .PATH:  ${TIC}
1.1       deraadt    12: LINKS= ${BINDIR}/tset ${BINDIR}/reset
                     13: MLINKS=        tset.1 reset.1
1.6       millert    14:
                     15: beforedepend: termsort.c
                     16:
                     17: termsort.c: ${TIC}/MKtermsort.sh
                     18:        sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
1.1       deraadt    19:
                     20: .include <bsd.prog.mk>