MacOS: aklog auth plugin
[openafs.git] / src / platform / DARWIN / Makefile.in
index edfbddb..e3693c4 100644 (file)
@@ -7,26 +7,65 @@
 
 srcdir=@srcdir@
 include @TOP_OBJDIR@/src/config/Makefile.config
+include @TOP_OBJDIR@/src/config/Makefile.pthread
+
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
-include ../../config/Makefile.version
 
-all: OpenAFS.prefPane afssettings
+.PHONY: all afscell
+
+all: OpenAFS.prefPane afssettings afscell growlagent aklog.bundle
+
+AFSPreference/build/Release/OpenAFS.prefPane: OpenAFS.prefPane
+afscell/build/Release/afscell.bundle: afscell
+afscell/InstallerSections.plist: afscell 
 
 OpenAFS.prefPane:
-       xcodebuild -project AFSPreference/OpenAFS.xcodeproj
-       mv AFSPreference/build/Release/OpenAFS.prefPane OpenAFS.prefPane
+       @case ${SYS_NAME} in \
+       *_darwin_100 ) \
+               xcodebuild -sdk macosx10.6 -project ${srcdir}/AFSPreference/OpenAFS.xcodeproj SYMDIR=`pwd`/AFSPreference/build;; \
+       *_darwin_90 ) \
+               xcodebuild -sdk macosx10.5 -project ${srcdir}/AFSPreference/OpenAFS.xcodeproj SYMDIR=`pwd`/AFSPreference/build;; \
+       *_darwin_80 ) \
+               xcodebuild -sdk macosx10.4 -project ${srcdor}/AFSPreference/OpenAFS.xcodeproj SYMDIR=`pwd`/AFSPreference/build;; \
+       * ) \
+               echo Not building AFS prefPane for ${SYS_NAME} ;; \
+       esac
+
+aklog.bundle:
+       @case ${SYS_NAME} in \
+       *_darwin_100 ) \
+               xcodebuild -sdk macosx10.6 -project ${srcdir}/AklogAuthPlugin/AklogAuthPlugin.xcodeproj SYMDIR=`pwd`/AklogAuthPlugin/build;; \
+       *_darwin_90 ) \
+               xcodebuild -sdk macosx10.5 -project ${srcdir}/AklogAuthPlugin/AklogAuthPlugin.xcodeproj SYMDIR=`pwd`/AklogAuthPlugin/build;; \
+       *_darwin_80 ) \
+               xcodebuild -sdk macosx10.4 -project ${srcdor}/AklogAuthPlugin/AklogAuthPlugin.xcodeproj SYMDIR=`pwd`/AklogAuthPlugin/build;; \
+       * ) \
+               echo Not building AklogAuthPlugin for ${SYS_NAME} ;; \
+       esac
+
+growlagent:
+       cd growlagent && $(MAKE) all
+
+afscell:
+       xcodebuild -project ${srcdir}/afscell/afscell.xcodeproj SYMROOT=`pwd`/afscell/build
 
 afssettings: afssettings.m 
-       ${CC} ${CFLAGS} -o afssettings afssettings.m -framework Foundation
+       ${CC} ${AFS_CFLAGS} -o afssettings $? -framework Foundation
 
 install: \
        ${DESTDIR}${sbindir}/afssettings
+       cd growlagent && $(MAKE) install
 
 dest: \
-       ${DEST}/etc/afssettings
+       ${DEST}/etc/afssettings \
+       ${DEST}/installer/afscell.bundle \
+       ${DEST}/installer/InstallerSections.plist \
+       ${DEST}/tools/OpenAFS.prefPane \
+       ${DEST}/tools/aklog.bundle
+       cd growlagent && $(MAKE) dest
 
 ${DESTDIR}${sbindir}/afssettings: afssettings
        ${INSTALL} $? $@
@@ -34,7 +73,28 @@ ${DESTDIR}${sbindir}/afssettings: afssettings
 ${DEST}/etc/afssettings: afssettings
        ${INSTALL} $? $@
 
+${DEST}/tools/aklog.bundle: AklogAuthPlugin/build/Release/aklog.bundle
+       -mkdir -p ${DEST}/tools
+       rm -rf ${DEST}/tools/aklog.bundle
+       cp -R $? $@
+
+${DEST}/installer/afscell.bundle: afscell/build/Release/afscell.bundle
+       -mkdir -p ${DEST}/installer
+       rm -rf ${DEST}/installer/afscell.bundle
+       cp -R $? $@
+
+${DEST}/installer/InstallerSections.plist: afscell/InstallerSections.plist
+       ${INSTALL} $? $@
+
+${DEST}/tools/OpenAFS.prefPane: AFSPreference/build/Release/OpenAFS.prefPane
+       -mkdir -p ${DEST}/tools
+       rm -rf ${DEST}/tools/OpenAFS.prefPane
+       cp -R $? $@
+
 clean:
        $(RM) -rf OpenAFS.prefPane
        $(RM) -rf AFSPreference/build
-       $(RM) -f *.o core afssettings AFS_component_version_number.c 
+       $(RM) -rf AklogAuthPlugin/build
+       $(RM) -rf afscell/build
+       $(RM) -f *.o core afssettings AFS_component_version_number.c
+       cd growlagent && $(MAKE) clean