From: Andre P. <at...@us...> - 2005-07-30 08:24:59
|
Update of /cvsroot/hoc/hoc/Foundation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10363/Foundation Modified Files: Makefile.in Log Message: Removed symlink to Foundation dir in AppKit dir Correctly clean all autogenerated files for Foundation/ and AppKit/ dirs Split install target into install and install-files targets, in preparation for the newly-added 'package' target (that will make use of the install-files target) Added PackageMaker package description file, used to generate a Mac OS X .pkg (Not quite complete enough for distribution yet, but seems to work OK at least.) Added 'package' target to main Makefile, to prepare a Mac OS X binary .pkg. Updated LICENSE file since it's 2005 :) Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/Foundation/Makefile.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.in 18 Apr 2005 00:45:42 -0000 1.11 +++ Makefile.in 30 Jul 2005 08:24:42 -0000 1.12 @@ -76,13 +76,16 @@ # ranlib libHSFoundation.a clean: - rm -rf build libHSFoundation.a libHSFoundation_dyn.dylib HSFoundation.o Foundation.hs \ - Foundation ghcmake.build-stamp + rm -rf build libHSFoundation.a libHSFoundation_dyn.dylib \ + HSFoundation.o Foundation.hs Foundation ghcmake.build-stamp \ + exposed-modules.txt Foundation.conf Foundation.conf-inplace -install: all Foundation.conf - mkdir -p $(GHC_LIB_PATH)/Foundation - cp -R libHSFoundation.a HSFoundation.o \ - build/imports $(GHC_LIB_PATH)/Foundation/ - ranlib $(GHC_LIB_PATH)/Foundation/libHSFoundation.a +install: install-files + ranlib "$(destdir)"/$(GHC_LIB_PATH)/Foundation/libHSFoundation.a $(GHC_PKG) update Foundation.conf + +install-files: all Foundation.conf + mkdir -p "$(destdir)"/$(GHC_LIB_PATH)/Foundation + cp -R libHSFoundation.a HSFoundation.o \ + build/imports "$(destdir)"/$(GHC_LIB_PATH)/Foundation/ |