From: alex <bin...@li...> - 2001-07-15 00:07:14
|
alex Sat Jul 14 17:06:53 2001 EDT Modified files: /r2/binarycloud Makefile Makefile.in /r2/binarycloud/base Makefile Log: Modified make to include ext/ in the make process. This will make metabase and pear classes (among others) usable with import. Index: r2/binarycloud/Makefile diff -u r2/binarycloud/Makefile:1.4 r2/binarycloud/Makefile:1.5 --- r2/binarycloud/Makefile:1.4 Mon Jun 25 09:42:41 2001 +++ r2/binarycloud/Makefile Sat Jul 14 17:06:50 2001 @@ -1,5 +1,5 @@ # {{{ Header -# -File $Id: Makefile,v 1.4 2001/06/25 16:42:41 odysseas Exp $ +# -File $Id: Makefile,v 1.5 2001/07/15 00:06:50 alex Exp $ # -License LGPL (http://www.gnu.org/copyleft/lesser.html) # -Copyright 2001, Intacct Corp. # -Author odysseas tsatalos, ody...@ya... @@ -13,6 +13,7 @@ MODULEDIRS= \ base \ user \ + ext \ $(EMPTY) @@ -25,6 +26,7 @@ BCLANG=$$i; export BCLANG; \ (echo "in user";cd 2>/dev/null user && make --no-print-directory ;); \ (echo "in base";cd 2>/dev/null base && make --no-print-directory ;); \ + (echo "in ext";cd 2>/dev/null ext && make --no-print-directory ;); \ done clean: Index: r2/binarycloud/Makefile.in diff -u r2/binarycloud/Makefile.in:1.5 r2/binarycloud/Makefile.in:1.6 --- r2/binarycloud/Makefile.in:1.5 Mon Jun 25 09:43:13 2001 +++ r2/binarycloud/Makefile.in Sat Jul 14 17:06:50 2001 @@ -1,5 +1,5 @@ # {{{ Header -# -File $Id: Makefile.in,v 1.5 2001/06/25 16:43:13 odysseas Exp $ +# -File $Id: Makefile.in,v 1.6 2001/07/15 00:06:50 alex Exp $ # -License LGPL (http://www.gnu.org/copyleft/lesser.html) # -Copyright 2001, Intacct Corp. # -Author odysseas tsatalos, ody...@ya... @@ -17,6 +17,7 @@ BCBUILD_DIR = $(BUILD_DIR)/binarycloud SITEBUILD_DIR = $(BUILD_DIR)/htdocs USERBUILD_DIR = $(BUILD_DIR)/user +EXTBUILD_DIR = $(BUILD_DIR)/ext TOOLS_DIR = $(SOURCE_DIR)/utils GETPKG = $(TOOLS_DIR)/pk2dir.pl Index: r2/binarycloud/base/Makefile diff -u r2/binarycloud/base/Makefile:1.3 r2/binarycloud/base/Makefile:1.4 --- r2/binarycloud/base/Makefile:1.3 Mon Jun 25 09:43:44 2001 +++ r2/binarycloud/base/Makefile Sat Jul 14 17:06:53 2001 @@ -1,5 +1,5 @@ # {{{ Header -# -File $Id: Makefile,v 1.3 2001/06/25 16:43:44 odysseas Exp $ +# -File $Id: Makefile,v 1.4 2001/07/15 00:06:53 alex Exp $ # -License LGPL (http://www.gnu.org/copyleft/lesser.html) # -Copyright 2001, Intacct Corp. # -Author odysseas tsatalos, ody...@ya... @@ -11,8 +11,8 @@ core \ bldr \ init \ - lib \ - mgr \ + lib \ + mgr \ $(EMPTY) all: dirs |