Added com_err file lists
authorMiro Jurisic <meeroh@mit.edu>
Wed, 18 Aug 1999 19:31:20 +0000 (19:31 +0000)
committerMiro Jurisic <meeroh@mit.edu>
Wed, 18 Aug 1999 19:31:20 +0000 (19:31 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11677 dc483132-0cff-0310-8789-dd5450dbe970

src/mac/macfile_gen.pl

index 6121eb4774fbe7f09260340a14ec61d70c4ac5e3..00d53657a7c7f73597116a1e6fcc4f157fd84d5d 100644 (file)
@@ -8,6 +8,7 @@
 #              gss-sources                                     -- complete list of mac GSS sources, relative to root
 #              krb5-sources                            -- complete list of mac Krb5 sources, relative to root
 #              profile-sources                         -- complete list of mac profile sources, relative to root
+#              comerr-sources                          -- complete list of mac com_err sources, relative to root
 #              gss-objects-ppc-debug           -- complete list of mac GSS PPC debug objects, relative to root
 #              gss-objects-68k-debug           -- complete list of mac GSS 68K debug objects, relative to root
 #              gss-objects-ppc-final           -- complete list of mac GSS PPC final objects, relative to root
 #              profile-objects-68k-debug       -- complete list of mac profile v5 68K debug objects, relative to root
 #              profile-objects-ppc-final       -- complete list of mac profile v5 PPC final objects, relative to root
 #              profile-objects-68k-final       -- complete list of mac profile v5 68K final objects, relative to root
+#              comerr-objects-ppc-debug        -- complete list of mac com_err PPC debug objects, relative to root
+#              comerr-objects-68k-debug        -- complete list of mac com_err v5 68K debug objects, relative to root
+#              comerr-objects-ppc-final        -- complete list of mac com_err v5 PPC final objects, relative to root
+#              comerr-objects-68k-final        -- complete list of mac com_err v5 68K final objects, relative to root
 #              include-folders                         -- complete list of include paths, relative to root
 #
 #      input on stdin
@@ -92,6 +97,12 @@ if ($action eq "all-folders") {
        @outputList = grep (/:profile:/, @sourceList);
        print (STDERR "Done. \n");
        
+} elsif ($action eq "comerr-sources") {
+
+       print (STDERR "# Building profile source listÉ ");
+       @outputList = grep (/:et:/, @sourceList);
+       print (STDERR "Done. \n");
+       
 } elsif ($action eq "gss-objects-ppc-debug") {
 
        print (STDERR "# Building GSS PPC debug object listÉ ");
@@ -152,28 +163,56 @@ if ($action eq "all-folders") {
 
        print (STDERR "# Building profile PPC debug object listÉ ");
        @outputList = grep (s/\.c$/\.ppcd.o/, @sourceList);
-       @outputList = grep (/:profile:|:et:/, @outputList);
+       @outputList = grep (/:profile:/, @outputList);
        print (STDERR "Done. \n");
 
 } elsif ($action eq "profile-objects-68k-debug") {
 
        print (STDERR "# Building profile 68K debug object listÉ ");
        @outputList = grep (s/\.c$/\.68kd.o/, @sourceList);
-       @outputList = grep (/:profile:|:et:/, @outputList);
+       @outputList = grep (/:profile:/, @outputList);
        print (STDERR "Done. \n");
 
 } elsif ($action eq "profile-objects-ppc-final") {
 
        print (STDERR "# Building profile PPC final object listÉ ");
        @outputList = grep (s/\.c$/\.ppcf.o/, @sourceList);
-       @outputList = grep (/:profile:|:et:/, @outputList);
+       @outputList = grep (/:profile:/, @outputList);
        print (STDERR "Done. \n");
 
 } elsif ($action eq "profile-objects-68k-final") {
 
        print (STDERR "# Building profile 68K final object listÉ ");
        @outputList = grep (s/\.c$/\.68kf.o/, @sourceList);
-       @outputList = grep (/:profile:|:et:/, @outputList);
+       @outputList = grep (/:profile:/, @outputList);
+       print (STDERR "Done. \n");
+
+} elsif ($action eq "comerr-objects-ppc-debug") {
+
+       print (STDERR "# Building com_err PPC debug object listÉ ");
+       @outputList = grep (s/\.c$/\.ppcd.o/, @sourceList);
+       @outputList = grep (/:et:/, @outputList);
+       print (STDERR "Done. \n");
+
+} elsif ($action eq "comerr-objects-68k-debug") {
+
+       print (STDERR "# Building com_err 68K debug object listÉ ");
+       @outputList = grep (s/\.c$/\.68kd.o/, @sourceList);
+       @outputList = grep (/:et:/, @outputList);
+       print (STDERR "Done. \n");
+
+} elsif ($action eq "comerr-objects-ppc-final") {
+
+       print (STDERR "# Building com_err PPC final object listÉ ");
+       @outputList = grep (s/\.c$/\.ppcf.o/, @sourceList);
+       @outputList = grep (/:et:/, @outputList);
+       print (STDERR "Done. \n");
+
+} elsif ($action eq "comerr-objects-68k-final") {
+
+       print (STDERR "# Building com_err 68K final object listÉ ");
+       @outputList = grep (s/\.c$/\.68kf.o/, @sourceList);
+       @outputList = grep (/:et:/, @outputList);
        print (STDERR "Done. \n");
 
 } elsif ($action eq "include-folders") {