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

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

1.13    ! nicm        1: #      $OpenBSD: Makefile,v 1.12 2019/12/21 21:40:01 espie Exp $
1.1       deraadt     2:
                      3: PROG=  tset
1.13    ! nicm        4: SRCS=  reset_cmd.c transform.c tset.c tty_settings.c
        !             5: CURSES=        ${.CURDIR}/../../lib/libcurses
1.6       millert     6: DPADD= ${LIBCURSES}
                      7: LDADD= -lcurses
1.13    ! nicm        8: LINKS= ${BINDIR}/tset ${BINDIR}/reset
1.6       millert     9: TIC= ${.CURDIR}/../tic
1.13    ! nicm       10: CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
1.6       millert    11: .PATH:  ${TIC}
1.13    ! nicm       12: CLEANFILES+= termsort.h
1.1       deraadt    13:
                     14: .include <bsd.prog.mk>