diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-16 23:59:11 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-16 23:59:11 +0000 |
commit | 137d4c07d5b0dd5bd0dcb4eb7c74c5ded135c351 (patch) | |
tree | 30a8a3a1295c4fe9b9b40333b10f61dfc7ea4e9f /externals/build/doc | |
parent | cdd018170f7a6b1a3185ba7b07f8e02d2c167594 (diff) |
got everything working properly with the centralized build system; it should still be backwards compatible
svn path=/trunk/; revision=3950
Diffstat (limited to 'externals/build/doc')
-rw-r--r-- | externals/build/doc/makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/externals/build/doc/makefile b/externals/build/doc/makefile index d1e0dbe2..c1e3e59d 100644 --- a/externals/build/doc/makefile +++ b/externals/build/doc/makefile @@ -4,18 +4,24 @@ # inclusion into the externals packages # -SRC_ROOT_DIR := $(shell pwd)/../../.. +CWD := $(shell pwd) + +# these are setup to be overridden by the packages/Makefile +SRC_ROOT_DIR := $(CWD)/../../.. INSTALL_PREFIX = . +BUILDLAYOUT_DIR = $(CWD)/.. all: install + echo "Completed externals/doc build!" + +include $(BUILDLAYOUT_DIR)/Makefile.buildlayout -include ../Makefile.buildlayout # this is here to retain compatibility to the way that this makefile copied # files before it was added to the unified build system HELP_DEST = . -install: +install: $(HELP_DEST) #---------------------------------------------------------------------------- # all standard objs' help files # it had to be broken up because the list is soo long |