From: Sebastian B. <sb...@us...> - 2013-01-04 20:24:42
|
Update of /cvsroot/simplemail/simplemail In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26033 Modified Files: .cvsignore build-dependencies.mk Log Message: Modularized build dependency installations. Index: .cvsignore =================================================================== RCS file: /cvsroot/simplemail/simplemail/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- .cvsignore 7 Dec 2012 05:29:57 -0000 1.23 +++ .cvsignore 4 Jan 2013 20:24:38 -0000 1.24 @@ -47,3 +47,7 @@ doxygen build-dependencies .build-dependencies-done +.expat-done +.mui-done +.amissl-done +.openurl-done Index: build-dependencies.mk =================================================================== RCS file: /cvsroot/simplemail/simplemail/build-dependencies.mk,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- build-dependencies.mk 7 Dec 2012 05:29:57 -0000 1.1 +++ build-dependencies.mk 4 Jan 2013 20:24:38 -0000 1.2 @@ -3,18 +3,35 @@ # using a cross compiler on an Unix system # -.build-dependencies-done: - mkdir -p build-dependencies +.build-dependencies-done: .amissl-done .expat-done .mui-done .openurl-done + touch $@ + +# +# Download and extract AmiSSL includes +# +.amissl-done: ifndef AMISSL_INCLUDE mkdir -p build-dependencies/amissl cd build-dependencies/amissl && wget -N http://www.heightanxiety.com/AmiSSL/AmiSSL-3.5-SDK.lha cd build-dependencies/amissl && lha xf AmiSSL-3.5-SDK.lha endif + touch $@ + +# +# Download and extract expat includes +# +.expat-done: ifndef EXPAT_INCLUDE mkdir -p build-dependencies/expat cd build-dependencies/expat && wget -N http://www.os4depot.net/share/development/library/misc/expat.lha cd build-dependencies/expat && lha xf expat.lha && ln -sf libraries/expat.h expat/SDK/Include/include_h/expat.h endif + touch $@ + +# +# Download and extract MUI includes +# +.mui-done: ifndef MUI_INCLUDE # MUI mkdir -p build-dependencies/SDK @@ -43,6 +60,12 @@ cd build-dependencies/SDK && lha xf MCC_Popph.lha cp -R build-dependencies/SDK/MCC_Popph/Developer/C/include/mui build-dependencies/SDK/MUI/C/Include endif + touch $@ + +# +# Download and extract OpenURL includes +# +.openurl-done: # OpenURL ifndef OPENURL_INCLUDE cd build-dependencies && wget -c http://os4depot.net/share/network/misc/openurl.lha |