diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b0d896d3845..7512e5acdb4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-12-04 Bruce Korb + + * fixinc/Makefile.*(clean): don't clean autogenerated files. + (mainainer-clean): clean autogenerated files + 2000-12-04 DJ Delorie * md.texi: Add overview, clarify match_dup and define_expand. diff --git a/gcc/fixinc/Makefile.DOS b/gcc/fixinc/Makefile.DOS index b207ad260b0..560101ad169 100644 --- a/gcc/fixinc/Makefile.DOS +++ b/gcc/fixinc/Makefile.DOS @@ -104,7 +104,10 @@ fixincl.x: fixincl.tpl inclhack.def cd $(srcdir) ; $(SHELL) ./genfixes $@ clean: - rm -f *.o $(TARGETS) fixincl.x machname.h *~ *.exe + rm -f *.o $(TARGETS) machname.h *~ *.exe + +maintainer-clean : clean + rm -f $(srcdir)/fixincl.x # Build the executable and copy up into gcc dir. # We still copy the script because we still have alternative scripts. diff --git a/gcc/fixinc/Makefile.in b/gcc/fixinc/Makefile.in index 0477c099412..73a81904917 100644 --- a/gcc/fixinc/Makefile.in +++ b/gcc/fixinc/Makefile.in @@ -94,7 +94,10 @@ $(srcdir)/fixincl.x: fixincl.tpl inclhack.def cd $(srcdir) ; $(SHELL) ./genfixes $@ clean: - rm -f *.o $(TARGETS) $(srcdir)/fixincl.x machname.h *~ + rm -f *.o $(TARGETS) machname.h *~ *.exe + +maintainer-clean : clean + rm -f $(srcdir)/fixincl.x # Build the executable and copy up into gcc dir. # We still copy the script because we still have alternative scripts.