]> sourceware.org Git - automake.git/commitdiff
4.4BSD systems use PROG.core; remove it
authorTom Tromey <tromey@redhat.com>
Fri, 13 Feb 1998 02:55:15 +0000 (02:55 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 13 Feb 1998 02:55:15 +0000 (02:55 +0000)
ChangeLog
compile.am
lib/am/compile.am

index 7feeb9d539b2dee6f8a3d334dde02609df4a9f39..87afc44f521c23f3978d983ef17b94e8eb87999d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Thu Feb 12 19:45:16 1998  Tom Tromey  <tromey@cygnus.com>
 
+       * compile.am: Remove *.core for 4.4BSD systems.  From Assar
+       Westerlund.
+
        * automake.in (handle_single_transform_list): Don't set
        seen_any_source if all sources are C++.
 
index 97eb6afb15a3b8d36a9d19ad2beac7e7d9777b52..e673c94cedcad2fc0c6cd9f30ec9f24133475bd8 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+## Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -26,7 +26,8 @@
 
 mostlyclean-compile:
 ## Don't remove 'core.*' because some distributions have eg "core.c".
-       -rm -f *.o core
+## 4.4BSD systems use `PROG.core'.
+       -rm -f *.o core *.core
 
 clean-compile:
 
index 97eb6afb15a3b8d36a9d19ad2beac7e7d9777b52..e673c94cedcad2fc0c6cd9f30ec9f24133475bd8 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+## Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -26,7 +26,8 @@
 
 mostlyclean-compile:
 ## Don't remove 'core.*' because some distributions have eg "core.c".
-       -rm -f *.o core
+## 4.4BSD systems use `PROG.core'.
+       -rm -f *.o core *.core
 
 clean-compile:
 
This page took 0.042038 seconds and 5 git commands to generate.