diff options
author | 2003-05-28 19:14:19 +0000 | |
---|---|---|
committer | 2003-05-28 19:14:19 +0000 | |
commit | db52f47f1d534adea5ea6a2910295c05d1b60235 (patch) | |
tree | 57bc85194f59fec5307fc2bb14903d753f4d3d1f | |
parent | help file incorporated, does not grow that much; millert@ ok (diff) | |
download | wireguard-openbsd-db52f47f1d534adea5ea6a2910295c05d1b60235.tar.xz wireguard-openbsd-db52f47f1d534adea5ea6a2910295c05d1b60235.zip |
more.o needs to depend on morehelp.h since "make clean" removes morehelp.h.
-rw-r--r-- | distrib/special/more/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/special/more/Makefile b/distrib/special/more/Makefile index 94905136533..4d1117ca22c 100644 --- a/distrib/special/more/Makefile +++ b/distrib/special/more/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2003/05/28 19:11:34 mickey Exp $ +# $OpenBSD: Makefile,v 1.4 2003/05/28 19:14:19 millert Exp $ PROG= more MAN= @@ -12,4 +12,6 @@ beforedepend: morehelp.h morehelp.h: ${.CURDIR}/more.help sed 's/\(^.*$$\)/\"\1\",/' ${.CURDIR}/more.help > morehelp.h +more.o: morehelp.h + .include <bsd.prog.mk> |