diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-18 05:37:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-18 05:37:49 +0000 |
commit | 3abfcc0df93dc31551516b068e3e407eafba0784 (patch) | |
tree | 98dadbcd86a16a7736f65de5117bf1ae4b2869e8 | |
parent | 1cdeaed2eff9bbc5189fa2d4d367ce3aaea8c151 (diff) |
allow "make includes" to work from here too
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 1996/05/14 19:10:34 deraadt Exp $ +# $OpenBSD: Makefile,v 1.10 1996/05/18 05:37:48 deraadt Exp $ # $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $ .include <bsd.own.mk> # for NOMAN, if it's there. @@ -24,6 +24,9 @@ regression-tests: @(cd ${.CURDIR}/regress && ${MAKE} regress) .endif +includes: + (cd ${.CURDIR}/include; ${MAKE} includes) + beforeinstall: .ifndef DESTDIR (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) |