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

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

1.11    ! daniel      1: #      $OpenBSD: Makefile,v 1.10 2019/12/21 21:40:01 espie Exp $
1.1       millert     2:
                      3: PROG=  tic
                      4: SRCS=  dump_entry.c tic.c
1.5       schwarze    5: MAN=   tic.1 captoinfo.1 infotocap.1
1.1       millert     6: LINKS= ${BINDIR}/tic ${BINDIR}/infotocap ${BINDIR}/tic ${BINDIR}/captoinfo
                      7: DPADD= ${LIBCURSES}
                      8: LDADD= -lcurses
                      9: CURSES=        ${.CURDIR}/../../lib/libcurses
                     10: CFLAGS+= -I${CURSES} -I${.CURDIR} -I.
1.11    ! daniel     11: CLEANFILES+= termsort.c
1.4       miod       12:
1.6       deraadt    13: # Work around gcc optimization bug on sh
1.4       miod       14: .if (${MACHINE_ARCH} == sh)
1.8       deraadt    15: COPTS+=        -O0
1.4       miod       16: .endif
1.9       espie      17:
                     18: dump_entry.o: termsort.c
1.1       millert    19:
                     20: termsort.c: MKtermsort.sh
                     21:        sh ${.CURDIR}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
                     22:
                     23: .include <bsd.prog.mk>