blob: 315cbbad0cee9e78210be4a8da64db1e8e82f968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.6 2022/07/11 03:11:49 daniel Exp $
PROG= infocmp
SRCS= infocmp.c dump_entry.c
DPADD= ${LIBCURSES}
LDADD= -lcurses
CURSES= ${.CURDIR}/../../lib/libcurses
TIC= ${.CURDIR}/../tic
CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
CLEANFILES+= termsort.c
.PATH: ${TIC}
dump_entry.o: termsort.c
termsort.c: ${TIC}/MKtermsort.sh
sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
.include <bsd.prog.mk>
|