diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2017-06-16 10:25:55 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2017-06-16 10:25:55 +0000 |
commit | 56378216a7af80d25a92bc732333cdbb3b757a4b (patch) | |
tree | e40a86d869bb7c558e18d5835a0031e79f2191c5 /usr.bin/tic | |
parent | d190add5fb2fe18a8fb100112fb73d1cfe314c9d (diff) |
mark files as BUILDFIRST, or write explicit dependencies, so that most
programs will build even without a make depend first.
okay tb@ millert@
Diffstat (limited to 'usr.bin/tic')
-rw-r--r-- | usr.bin/tic/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tic/Makefile b/usr.bin/tic/Makefile index 8febec0eae2..e16d2461366 100644 --- a/usr.bin/tic/Makefile +++ b/usr.bin/tic/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2012/09/10 04:03:36 deraadt Exp $ +# $OpenBSD: Makefile,v 1.9 2017/06/16 10:25:54 espie Exp $ PROG= tic SRCS= dump_entry.c tic.c @@ -17,6 +17,8 @@ COPTS+= -O0 beforedepend: termsort.c +dump_entry.o: termsort.c + termsort.c: MKtermsort.sh sh ${.CURDIR}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET} |