From: Andre P. <at...@us...> - 2005-07-30 08:24:59
|
Update of /cvsroot/hoc/hoc/HOC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10363/HOC 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/HOC/Makefile.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Makefile.in 19 Jul 2005 23:38:49 -0000 1.14 +++ Makefile.in 30 Jul 2005 08:24:43 -0000 1.15 @@ -82,9 +82,12 @@ HOC/NewClass_stub.c HOC/NewClass_stub.h \ ghcmake.build-stamp -install: all HOC.conf - mkdir -p $(GHC_LIB_PATH)/HOC - cp -R libHOC.a libHOC_dyn.dylib HOC.o build/imports \ - $(GHC_LIB_PATH)/HOC/ - ranlib $(GHC_LIB_PATH)/HOC/libHOC.a +install: install-files + ranlib "$(destdir)"/$(GHC_LIB_PATH)/HOC/libHOC.a $(GHC_PKG) update HOC.conf + +install-files: all HOC.conf + mkdir -p "$(destdir)"/$(GHC_LIB_PATH)/HOC + cp -R libHOC.a libHOC_dyn.dylib HOC.o build/imports \ + "$(destdir)"/$(GHC_LIB_PATH)/HOC/ + |