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

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

1.3     ! schwarze    1: #      $OpenBSD: Makefile,v 1.2 2000/02/20 21:50:18 millert Exp $
1.1       millert     2:
                      3: PROG=  infocmp
                      4: SRCS=  infocmp.c dump_entry.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.3     ! schwarze   10: CLEANFILES+= termsort.c infocmp.1
1.1       millert    11: .PATH:  ${TIC}
                     12:
                     13: beforedepend: termsort.c
                     14:
                     15: termsort.c: ${TIC}/MKtermsort.sh
                     16:        sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
1.3     ! schwarze   17:
        !            18: infocmp.1: infocmp.1tbl
        !            19:        cp ${.ALLSRC} ${.TARGET}
1.1       millert    20:
                     21: .include <bsd.prog.mk>