summaryrefslogtreecommitdiffstats
path: root/src/mac/MacOSX/Scripts/Kerberos5ServerBuild.jam
diff options
context:
space:
mode:
Diffstat (limited to 'src/mac/MacOSX/Scripts/Kerberos5ServerBuild.jam')
-rw-r--r--src/mac/MacOSX/Scripts/Kerberos5ServerBuild.jam87
1 files changed, 0 insertions, 87 deletions
diff --git a/src/mac/MacOSX/Scripts/Kerberos5ServerBuild.jam b/src/mac/MacOSX/Scripts/Kerberos5ServerBuild.jam
deleted file mode 100644
index 2a9da1485..000000000
--- a/src/mac/MacOSX/Scripts/Kerberos5ServerBuild.jam
+++ /dev/null
@@ -1,87 +0,0 @@
-include "$(SRCROOT)/../Scripts/Kerberos5BuildSystem.jam" ;
-
-MakeStamp = "$(IntermediateBuild)/make.stamp" ;
-
-# InstallProgram <destination executable> : <source executable>
-rule InstallProgram
-{
- DEPENDS "$(1)" : "$(2)" ;
- DEPENDS "$(2)" : "$(MakeStamp)" ;
- Clean.Remove clean "$(1)" ;
-}
-actions InstallProgram
-{
- mkdir -p "$(1:D)"
- /usr/bin/install -c -s "$(2)" "$(1)"
-}
-
-# InstallFile <destination file> : <source file>
-rule InstallFile
-{
- DEPENDS "$(1)" : "$(2)" ;
- DEPENDS "$(2)" : "$(MakeStamp)" ;
- Clean.Remove clean "$(1)" ;
-}
-actions InstallFile
-{
- mkdir -p "$(1:D)"
- /usr/bin/install -c -m 644 "$(2)" "$(1)"
-}
-
-Make "$(MakeStamp)" : "$(Makefile)" ;
-
-InstallProgram "$(DSTROOT)/usr/sbin/kadmin" : "$(IntermediateBuild)/kadmin/cli/kadmin" ;
-InstallProgram "$(DSTROOT)/usr/sbin/kadmin.local" : "$(IntermediateBuild)/kadmin/cli/kadmin.local" ;
-InstallProgram "$(DSTROOT)/usr/sbin/kadmind" : "$(IntermediateBuild)/kadmin/server/kadmind" ;
-InstallProgram "$(DSTROOT)/usr/sbin/ktutil" : "$(IntermediateBuild)/kadmin/ktutil/ktutil" ;
-InstallProgram "$(DSTROOT)/usr/sbin/kdb5_util" : "$(IntermediateBuild)/kadmin/dbutil/kdb5_util" ;
-InstallProgram "$(DSTROOT)/usr/sbin/kprop" : "$(IntermediateBuild)/slave/kprop" ;
-InstallProgram "$(DSTROOT)/usr/sbin/kpropd" : "$(IntermediateBuild)/slave/kpropd" ;
-InstallProgram "$(DSTROOT)/usr/sbin/krb524d" : "$(IntermediateBuild)/krb524/krb524d" ;
-InstallProgram "$(DSTROOT)/usr/sbin/krb5kdc" : "$(IntermediateBuild)/kdc/krb5kdc" ;
-InstallProgram "$(DSTROOT)/usr/bin/krb5-config" : "$(IntermediateBuild)/krb5-config" ;
-
-InstallFile "$(DSTROOT)/usr/share/man/man1/kerberos.1" : "$(SRCROOT)/../../Kerberos5/Sources/gen-manpages/kerberos.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man1/krb5-config.1" : "$(SRCROOT)/../../Kerberos5/Sources/krb5-config.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man5/kdc.conf.5" : "$(SRCROOT)/../../Kerberos5/Sources/config-files/kdc.conf.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man5/krb5.conf.5" : "$(SRCROOT)/../../Kerberos5/Sources/config-files/krb5.conf.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/kadmin.8" : "$(SRCROOT)/../../Kerberos5/Sources/kadmin/cli/kadmin.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/kadmin.local.8" : "$(SRCROOT)/../../Kerberos5/Sources/kadmin/cli/kadmin.local.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/kadmind.8" : "$(SRCROOT)/../../Kerberos5/Sources/kadmin/server/kadmind.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/ktutil.8" : "$(SRCROOT)/../../Kerberos5/Sources/kadmin/ktutil/ktutil.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/kdb5_util.8" : "$(SRCROOT)/../../Kerberos5/Sources/kadmin/dbutil/kdb5_util.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/kprop.8" : "$(SRCROOT)/../../Kerberos5/Sources/slave/kprop.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/kpropd.8" : "$(SRCROOT)/../../Kerberos5/Sources/slave/kpropd.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/krb5kdc.8" : "$(SRCROOT)/../../Kerberos5/Sources/kdc/krb5kdc.M" ;
-InstallFile "$(DSTROOT)/usr/share/man/man8/krb524d.8" : "$(SRCROOT)/../../Kerberos5/Sources/krb524/krb524d.M" ;
-
-
-DEPENDS all : "$(MakeStamp)" ;
-
-DEPENDS install : all
- "$(DSTROOT)/usr/sbin/kadmin"
- "$(DSTROOT)/usr/sbin/kadmin.local"
- "$(DSTROOT)/usr/sbin/kadmind"
- "$(DSTROOT)/usr/sbin/kdb5_util"
- "$(DSTROOT)/usr/sbin/kprop"
- "$(DSTROOT)/usr/sbin/kpropd"
- "$(DSTROOT)/usr/sbin/krb524d"
- "$(DSTROOT)/usr/sbin/krb5kdc"
- "$(DSTROOT)/usr/sbin/ktutil"
- "$(DSTROOT)/usr/bin/krb5-config"
-
- "$(DSTROOT)/usr/share/man/man1/kerberos.1"
- "$(DSTROOT)/usr/share/man/man1/krb5-config.1"
- "$(DSTROOT)/usr/share/man/man5/kdc.conf.5"
- "$(DSTROOT)/usr/share/man/man5/krb5.conf.5"
- "$(DSTROOT)/usr/share/man/man8/kadmin.8"
- "$(DSTROOT)/usr/share/man/man8/kadmin.local.8"
- "$(DSTROOT)/usr/share/man/man8/kadmind.8"
- "$(DSTROOT)/usr/share/man/man8/kdb5_util.8"
- "$(DSTROOT)/usr/share/man/man8/kprop.8"
- "$(DSTROOT)/usr/share/man/man8/kpropd.8"
- "$(DSTROOT)/usr/share/man/man8/krb5kdc.8"
- "$(DSTROOT)/usr/share/man/man8/ktutil.8"
- "$(DSTROOT)/usr/share/man/man8/krb524d.8" ;
-
-DEPENDS installhdrs : all ;