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

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

1.9     ! millert     1: #      $OpenBSD: Makefile,v 1.8 2009/05/06 19:12:45 millert 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
                     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>