diff options
author | 2003-05-19 19:05:06 +0000 | |
---|---|---|
committer | 2003-05-19 19:05:06 +0000 | |
commit | 6da1a4bcd4aa07c2c9a1f5911bc06ea220c149c5 (patch) | |
tree | 082632e85c5ac4c29a42831c64119bf8da3d6c1d | |
parent | strlcpy; millert@ ok (diff) | |
download | wireguard-openbsd-6da1a4bcd4aa07c2c9a1f5911bc06ea220c149c5.tar.xz wireguard-openbsd-6da1a4bcd4aa07c2c9a1f5911bc06ea220c149c5.zip |
Add the generated files as a dependency for the 'all' target.
Should prevent bogus bug reports that come in every so often...
-rw-r--r-- | lib/libcurses/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile index 17a32a41b1f..e558c893bb0 100644 --- a/lib/libcurses/Makefile +++ b/lib/libcurses/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.52 2002/11/14 00:50:19 millert Exp $ +# $OpenBSD: Makefile,v 1.53 2003/05/19 19:05:06 millert Exp $ # Uncomment this to enable tracing in libcurses #CURSESTRACE=-DTRACE @@ -194,8 +194,9 @@ CLEANFILES+= ${GENERATED} SUBDIR+= doc .endif -beforedepend: init_keytry.h nomacros.h codes.c comp_captab.c expanded.c \ - fallback.c lib_gen.c lib_keyname.c names.c unctrl.c make_hash make_keys +all: ${GENERATED} + +beforedepend: ${GENERATED} includes: @cmp -s ${DESTDIR}/usr/include/ncurses.h ${.CURDIR}/curses.h || \ |