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

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

1.1     ! millert     1: #      $OpenBSD: Makefile,v 1.6 1998/11/16 03:08:40 millert Exp $
        !             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.
        !            10: .PATH:  ${TIC}
        !            11:
        !            12: beforedepend: termsort.c
        !            13:
        !            14: termsort.c: ${TIC}/MKtermsort.sh
        !            15:        sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
        !            16:
        !            17: .include <bsd.prog.mk>