diff options
author | Miro Jurisic <meeroh@mit.edu> | 1999-01-26 20:56:14 +0000 |
---|---|---|
committer | Miro Jurisic <meeroh@mit.edu> | 1999-01-26 20:56:14 +0000 |
commit | 7e529d87eb133d6a7140a3e26742afc969bbc9c6 (patch) | |
tree | 366106e1d4b141e4aa625587c966e21caca8e9f2 /src/mac/Makefile.tmpl | |
parent | 8b4a28977a13e39489cda61f29eee160e86abde5 (diff) | |
download | krb5-7e529d87eb133d6a7140a3e26742afc969bbc9c6.tar.gz krb5-7e529d87eb133d6a7140a3e26742afc969bbc9c6.tar.xz krb5-7e529d87eb133d6a7140a3e26742afc969bbc9c6.zip |
Reelase notes update; Makefile.tmpl fixes to make debugging version link against debugging C and runtime libs
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11125 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/mac/Makefile.tmpl')
-rw-r--r-- | src/mac/Makefile.tmpl | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/src/mac/Makefile.tmpl b/src/mac/Makefile.tmpl index c24a406e7..cbdaca5b2 100644 --- a/src/mac/Makefile.tmpl +++ b/src/mac/Makefile.tmpl @@ -241,6 +241,34 @@ libraries-krb5-ppc = \ "{SharedLibraries}InterfaceLib" \ "{SharedLibraries}MathLib" +libraries-gss-cfm68k-debug = \ + "/bin/MIT CLib.68K.debug" \ + "/bin/MIT RuntimeLib.68K.debug" \ + "{MW68KLibraries}MSL ShLibRuntimeCFM68K.Lib" \ + "{SharedLibraries}InterfaceLib" \ + "{MW68KLibraries}MathLibCFM68K (4i_8d).Lib" + +libraries-gss-ppc-debug = \ + "/bin/MIT CLib.PPC.debug" \ + "/bin/MIT RuntimeLib.PPC.debug" \ + "{MWPPCLibraries}MSL ShLibRuntime.Lib" \ + "{SharedLibraries}InterfaceLib" \ + "{SharedLibraries}MathLib" + +libraries-krb5-cfm68k-debug = \ + "/bin/MIT CLib.68K.debug" \ + "/bin/MIT RuntimeLib.68K.debug" \ + "{MW68KLibraries}MSL ShLibRuntimeCFM68K.Lib" \ + "{SharedLibraries}InterfaceLib" \ + "{MW68KLibraries}MathLibCFM68K (4i_8d).Lib" + +libraries-krb5-ppc-debug = \ + "/bin/MIT CLib.PPC.debug" \ + "/bin/MIT RuntimeLib.PPC.debug" \ + "{MWPPCLibraries}MSL ShLibRuntime.Lib" \ + "{SharedLibraries}InterfaceLib" \ + "{SharedLibraries}MathLib" + ################################################################################ ## ## Common compiler and linker options @@ -385,7 +413,7 @@ Kerberos5Lib.68K.debug Kerberos5Lib.68K.debug.MAP :: {autogenerated-files} /mac/ -init "__initializeK5" -term "__terminateK5" \ -weakimport /mac/TestTrack/MITAthenaLib -initbefore "MIT_*TestTrackLib" \ -cv 1 -uv 1 \ - {libraries-krb5-cfm68k} {krb5-obj-cfm68k} {cfm-krb5-obj-cfm68k} {testtrack-obj-cfm68k} {ccache-cfm68k-debug} + {libraries-krb5-cfm68k-debug} {krb5-obj-cfm68k} {cfm-krb5-obj-cfm68k} {testtrack-obj-cfm68k} {ccache-cfm68k-debug} Kerberos5Lib.68K.debug :: /mac/version.r Rez "/mac/version.r" -a -o Kerberos5Lib.68K.debug @@ -409,7 +437,7 @@ GSSLib.68K.debug GSSLib.68K.debug.MAP :: {autogenerated-files} Kerberos5Lib.68K -map GSSLib.68K.MAP -o GSSLib.68K.debug \ -init "__initializeGSS" -term "__terminateGSS" \ -cv 1 -uv 1 \ - {libraries-gss-cfm68k} {gss-obj-cfm68k} {cfm-gss-obj-cfm68k} Kerberos5Lib.68K + {libraries-gss-cfm68k-debug} {gss-obj-cfm68k} {cfm-gss-obj-cfm68k} Kerberos5Lib.68K GSSLib.68K :: /mac/version.r Rez "/mac/version.r" -a -o GSSLib.68K.debug @@ -445,7 +473,7 @@ Kerberos5Lib.PPC.debug Kerberos5Lib.PPC.debug.MAP :: {autogenerated-files} /mac -weakimport /mac/TestTrack/MITAthenaLib -initbefore "MIT_*TestTrackLib" \ -map K5LibraryPPC.debug.MAP -o Kerberos5Lib.PPC.debug \ -cv 1 -uv 1 \ - {libraries-krb5-ppc} {krb5-obj-ppc} {cfm-krb5-obj-ppc} {testtrack-obj-ppc} {ccache-ppc-debug} + {libraries-krb5-ppc-debug} {krb5-obj-ppc} {cfm-krb5-obj-ppc} {testtrack-obj-ppc} {ccache-ppc-debug} Kerberos5Lib.PPC.debug :: /mac/version.r Rez "/mac/version.r" -a -o Kerberos5Lib.PPC.debug @@ -467,7 +495,7 @@ GSSLib.PPC.debug GSSLib.PPC.debug.MAP :: {autogenerated-files} Kerberos5Lib.PPC. -@export "/mac/GSSLibrary.exp" -sym on -init "__initializeGSS" \ -term "__terminateGSS" -map GSSLib.PPC.debug.MAP -o GSSLib.PPC.debug \ -cv 1 -uv 1 \ - {libraries-gss-ppc} {gss-obj-ppc} {cfm-gss-obj-ppc} Kerberos5Lib.PPC.debug + {libraries-gss-ppc-debug} {gss-obj-ppc} {cfm-gss-obj-ppc} Kerberos5Lib.PPC.debug GSSLib.PPC.debug :: /mac/version.r Rez "/mac/version.r" -a -o GSSLib.PPC.debug |