macfiles.sh: Improved matching of the SRCS declaration. It must not
authorTheodore Tso <tytso@mit.edu>
Wed, 20 Mar 1996 05:18:11 +0000 (05:18 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 20 Mar 1996 05:18:11 +0000 (05:18 +0000)
be commented out; it must start on the first column of the line.

Makefile.tmpl (KH): Fix typos in Dan's original template.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7681 dc483132-0cff-0310-8789-dd5450dbe970

src/mac/ChangeLog
src/mac/Makefile.tmpl
src/mac/macfiles.sh

index f813fe6160643b7abe4e2c46a4e8837ec5ba7cb8..3c31f723095451cb97fa8f4f4a9b723565ddc947 100644 (file)
@@ -1,3 +1,11 @@
+Wed Mar 20 00:16:45 1996  Theodore Y. Ts'o  <tytso@dcl>
+
+       * macfiles.sh: Improved matching of the SRCS declaration.  It must
+               not be commented out; it must start on the first column of
+               the line.
+
+       * Makefile.tmpl (KH): Fix typos in Dan's original template.
+
 Wed Feb  7 00:26:08 1996  Theodore Y. Ts'o  <tytso@dcl>
 
        * Makefile.tmpl, macfiles.sh: New files, for danw's changes to
index 0639f5d41f2f820a7bba61a2c09e8e0e59796ae6..cfc0514ed572140f211f5055cb3e7115c0f96bee 100644 (file)
@@ -19,11 +19,11 @@ build : {KH68K} {KHPPC}
 .c.PPC.o : .c
        MWCPPC {DepDir}{Default}.c {OPTIONS} -prefix {KHPPC}
 
-{KH}68K : {KH}.pch
+{KH68K} : {KH}KerberosHeaders.pch
        MWC68K {KH}KerberosHeaders.pch -precompile {KH68K} {OPTIONS} -i {KH}
 
-{KH}PPC : {KH}.pch
-       MWCPPC {KH}KerberosHeaders.pch -precompile {KH}PPC {OPTIONS} -i {KH}
+{KHPPC} : {KH}KerberosHeaders.pch
+       MWCPPC {KH}KerberosHeaders.pch -precompile {KHPPC} {OPTIONS} -i {KH}
 
 link :
        MWLink68K -library -model far -o libkrb5.68K {K5OBJS68K}
index 1e334b29182c98a8278560c59a076a3b9d020b83..45acd1ce3cf5cc44d5e8616c44164dd22c42549c 100644 (file)
@@ -2,7 +2,7 @@
 
 for DIR do
   for SDIR in `sed -n -e 's/MAC_SUBDIRS.*=//p' $DIR/Makefile.in`; do
-    awk '/SRCS?[       ]*=/, /[^\\]$/' $DIR/$SDIR/Makefile.in | \
+    awk '/^SRCS?[      ]*=/, /[^\\]$/' $DIR/$SDIR/Makefile.in | \
       tr '     ' '\012\012' | sed -n -e 's|.*[/)]\([A-Za-z0-9_]*\.c\).*|\1|' -e 's|\(.*\.c\)|'$DIR/$SDIR'/\1|p';
     ls -1 $DIR/$SDIR/*.h 2> /dev/null
     mac/macfiles.sh $DIR/$SDIR;