diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-28 19:14:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-28 19:14:20 +0000 |
commit | 9a6f0260c551f1e603ca520bcde02dfded350293 (patch) | |
tree | ced5ec9f127b035147660f8feb63e098884f610f /distrib/special | |
parent | a0ca6a6cfa553a5da1bf690e0ac75385626e68e3 (diff) |
more.o needs to depend on morehelp.h since "make clean" removes morehelp.h.
Diffstat (limited to 'distrib/special')
-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> |