Update of /cvsroot/popfile/macosx/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9408/modules
Modified Files:
Makefile
Log Message:
Update Makefiles to create necessary folders
Index: Makefile
===================================================================
RCS file: /cvsroot/popfile/macosx/modules/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile 25 May 2008 07:03:23 -0000 1.1.1.1
--- Makefile 25 May 2008 07:38:05 -0000 1.2
***************
*** 23,29 ****
POPFILE_ROOT=$(PACKAGE_ROOT)/Library/POPFile
LIB_ROOT = $(POPFILE_ROOT)/lib
! SSLLIB_ROOT = ../addssl/Package_Root/Library/POPFile/lib
KAKASI_DIC_ROOT = $(POPFILE_ROOT)/kakasi
FAKECONFIG = ExtUtils-FakeConfig-0.11
FAKECONFIG_ARCHIVE = $(FAKECONFIG).zip
--- 23,34 ----
POPFILE_ROOT=$(PACKAGE_ROOT)/Library/POPFile
LIB_ROOT = $(POPFILE_ROOT)/lib
!
KAKASI_DIC_ROOT = $(POPFILE_ROOT)/kakasi
+ SSLPACKAGE_ROOT = ../addssl/Package_Root
+ SSLPACKAGE_LIBRARY_ROOT = $(SSLPACKAGE_ROOT)/Library
+ SSLPOPFILE_ROOT = $(SSLPACKAGE_LIBRARY_ROOT)/POPFile
+ SSLLIB_ROOT = $(SSLPOPFILE_ROOT)/lib
+
FAKECONFIG = ExtUtils-FakeConfig-0.11
FAKECONFIG_ARCHIVE = $(FAKECONFIG).zip
***************
*** 108,111 ****
--- 113,118 ----
core_modules:core_modules_build $(CORE_MODULES)
+ if test ! -d $(LIB_ROOT); then mkdir $(LIB_ROOT) ; fi
+
cp -rf $(DBI)/blib/arch/auto $(LIB_ROOT)
cp -rf $(DBI)/blib/lib/* $(LIB_ROOT)
***************
*** 127,130 ****
--- 134,139 ----
xmlrpc_modules: xmlrpc_modules_build
+ if test ! -d $(LIB_ROOT); then mkdir $(LIB_ROOT) ; fi
+
cp -rf $(SOAPLITE)/lib/* $(LIB_ROOT)
***************
*** 133,140 ****
--- 142,156 ----
japanese_modules: japanese_modules_build
+ if test ! -d $(LIB_ROOT); then mkdir $(LIB_ROOT) ; fi
+
cp -rf $(TEXTKAKASI)/blib/arch/auto $(LIB_ROOT)
cp -rf $(TEXTKAKASI)/blib/lib/* $(LIB_ROOT)
ssl_modules: ssl_modules_build
+ if test ! -d $(SSLPACKAGE_ROOT); then mkdir $(SSLPACKAGE_ROOT) ; fi
+ if test ! -d $(SSLPACKAGE_LIBRARY_ROOT); then mkdir $(SSLPACKAGE_LIBRARY_ROOT) ; fi
+ if test ! -d $(SSLPOPFILE_ROOT); then mkdir $(SSLPOPFILE_ROOT) ; fi
+ if test ! -d $(SSLLIB_ROOT); then mkdir $(SSLLIB_ROOT) ; fi
+
cp -rf $(NETSSLEAY)/blib/arch/auto $(SSLLIB_ROOT)
cp -rf $(NETSSLEAY)/blib/lib/* $(SSLLIB_ROOT)
|