From: Andre P. <at...@us...> - 2005-07-30 08:25:23
|
Update of /cvsroot/hoc/hoc/AppKit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10363/AppKit 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/AppKit/Makefile.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.in 28 Jul 2005 08:30:01 -0000 1.11 +++ Makefile.in 30 Jul 2005 08:24:42 -0000 1.12 @@ -38,7 +38,6 @@ ln -sf ../Bindings/ifgen-output/Cocoa.hs . ln -sf ../Bindings/ifgen-output/AppKit.hs . ln -sf ../Bindings/ifgen-output/AppKit . - ln -sf ../Bindings/ifgen-output/Foundation . test ! -d ../Bindings/ifgen-output/GNUstepGUI || \ ln -sf ../Bindings/ifgen-output/GNUstepGUI . test ! -r ../Bindings/ifgen-output/GNUstepGUI.hs || \ @@ -85,14 +84,16 @@ # ranlib libHSAppKit.a clean: - rm -rf build libHSAppKit.a libHSAppKit_dyn.dylib HSAppKit.o AppKit.hs AppKit \ - Cocoa.hs ghcmake.build-stamp + rm -rf build libHSAppKit.a libHSAppKit_dyn.dylib HSAppKit.o \ + AppKit.hs AppKit Cocoa.hs ghcmake.build-stamp \ + exposed-modules.txt AppKit.conf AppKit.conf-inplace -install: all AppKit.conf - mkdir -p $(GHC_LIB_PATH)/AppKit +install: + ranlib "$(destdir)"/$(GHC_LIB_PATH)/AppKit/libHSAppKit.a + ghc-pkg --update-package --input-file=AppKit.conf + +install-files: all AppKit.conf + mkdir -p "$(destdir)"/$(GHC_LIB_PATH)/AppKit cp -R libHSAppKit.a HSAppKit.o build/imports \ - $(GHC_LIB_PATH)/AppKit/ - ranlib $(GHC_LIB_PATH)/AppKit/libHSAppKit.a - ghc-pkg --update-package \ - --input-file=AppKit.conf + "$(destdir)"/$(GHC_LIB_PATH)/AppKit/ |