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

Annotation of src/usr.bin/tic/Makefile, Revision 1.3

1.3     ! millert     1: #      $OpenBSD: Makefile,v 1.2 1998/08/12 20:09:17 art Exp $
1.1       millert     2:
                      3: PROG=  tic
                      4: SRCS=  dump_entry.c tic.c
1.3     ! millert     5: MAN=   tic.1 captoinfo.1tbl infotocap.1
1.1       millert     6: LINKS= ${BINDIR}/tic ${BINDIR}/infotocap ${BINDIR}/tic ${BINDIR}/captoinfo
                      7: DPADD= ${LIBCURSES}
                      8: LDADD= -lcurses
                      9: CURSES=        ${.CURDIR}/../../lib/libcurses
                     10: CFLAGS+= -I${CURSES} -I${.CURDIR} -I.
1.2       art        11: CLEANFILES+= termsort.c
1.1       millert    12:
                     13: beforedepend: termsort.c
                     14:
                     15: termsort.c: MKtermsort.sh
                     16:        sh ${.CURDIR}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
                     17:
                     18: .include <bsd.prog.mk>