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

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

1.11    ! espie       1: #      $OpenBSD: Makefile,v 1.10 2016/03/30 06:38:46 jmc Exp $
1.1       deraadt     2:
                      3: PROG=  tset
1.9       millert     4: SRCS=  tset.c dump_entry.c
1.6       millert     5: DPADD= ${LIBCURSES}
                      6: LDADD= -lcurses
                      7: CURSES= ${.CURDIR}/../../lib/libcurses
                      8: TIC= ${.CURDIR}/../tic
1.8       millert     9: CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I. -DHAVE_GETTTYNAM -DHAVE_TTYENT_H
1.7       millert    10: CLEANFILES+= termsort.c
1.6       millert    11: .PATH:  ${TIC}
1.1       deraadt    12: LINKS= ${BINDIR}/tset ${BINDIR}/reset
1.6       millert    13:
                     14: beforedepend: termsort.c
1.11    ! espie      15:
        !            16: dump_entry.o: termsort.c
1.6       millert    17:
                     18: termsort.c: ${TIC}/MKtermsort.sh
                     19:        sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
1.1       deraadt    20:
                     21: .include <bsd.prog.mk>