diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2007-03-28 00:22:05 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2007-03-28 00:22:05 +0000 |
commit | fee58a0c40f176ab9adcc75cccc15c512d826523 (patch) | |
tree | 5bdcdc6b459fdadf319d3e24a074be6cff1c90d8 /distrib/notes | |
parent | dd76b9ac06fc8ce6b20a9db0ddf19baff63d99ee (diff) |
make obj in distrib/notes/ to avoid writing to the src tree, and
make it a regular SUBDIR
ok matthieu@
Diffstat (limited to 'distrib/notes')
-rw-r--r-- | distrib/notes/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/distrib/notes/Makefile b/distrib/notes/Makefile index 58cc1b195..f5ac05bd3 100644 --- a/distrib/notes/Makefile +++ b/distrib/notes/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2006/11/27 11:25:45 matthieu Exp $ +# $OpenBSD: Makefile,v 1.2 2007/03/28 00:22:04 todd Exp $ FILE= README.${MACHINE} @@ -7,7 +7,7 @@ sets=xbase xfont xshare xserv all: ${FILE}.generated ${FILE}.generated: ${FILE} m4.common - m4 m4.common ${FILE} > ${FILE}.generated + m4 ${.CURDIR}/m4.common ${.CURDIR}/${FILE} > ${FILE}.generated install: ${FILE}.generated ${INSTALL} ${INSTALL_COPY} -o root -g wheel -m 444 ${FILE}.generated \ @@ -25,3 +25,5 @@ install: ${FILE}.generated clean: rm -f *.generated + +.include <bsd.xorg.mk> |