MacOS: aklog auth plugin
[openafs.git] / src / platform / DARWIN / Makefile.in
index 619095d..e3693c4 100644 (file)
@@ -7,24 +7,94 @@
 
 srcdir=@srcdir@
 include @TOP_OBJDIR@/src/config/Makefile.config
-include ../../config/Makefile.version
+include @TOP_OBJDIR@/src/config/Makefile.pthread
 
-all: afssettings
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+
+.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:
+       @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}${bindir}/afssettings
+       ${DESTDIR}${sbindir}/afssettings
+       cd growlagent && $(MAKE) install
 
 dest: \
-       ${DEST}/bin/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} $? $@
+
+${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 $? $@
 
-${DESTDIR}${bindir}/afssettings: afssettings
-       ${INSTALL} -s $? $@
+${DEST}/installer/InstallerSections.plist: afscell/InstallerSections.plist
+       ${INSTALL} $? $@
 
-${DEST}/bin/afssettings: afssettings
-       ${INSTALL} -s $? $@
+${DEST}/tools/OpenAFS.prefPane: AFSPreference/build/Release/OpenAFS.prefPane
+       -mkdir -p ${DEST}/tools
+       rm -rf ${DEST}/tools/OpenAFS.prefPane
+       cp -R $? $@
 
 clean:
-       $(RM) -f *.o core afssettings AFS_component_version_number.c 
+       $(RM) -rf OpenAFS.prefPane
+       $(RM) -rf AFSPreference/build
+       $(RM) -rf AklogAuthPlugin/build
+       $(RM) -rf afscell/build
+       $(RM) -f *.o core afssettings AFS_component_version_number.c
+       cd growlagent && $(MAKE) clean