diff options
author | segher <segher@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-04-11 07:26:36 +0000 |
---|---|---|
committer | segher <segher@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-04-11 07:26:36 +0000 |
commit | 537e38b358fd975288272f278fc39829b1b8930f (patch) | |
tree | acd9cb5711ff45e2f26cfc66ae79b4dccc4327c4 | |
parent | a9022b8b93718e275e13bfd4cfcea974262cb89f (diff) | |
download | linaro-gcc-537e38b358fd975288272f278fc39829b1b8930f.tar.gz linaro-gcc-537e38b358fd975288272f278fc39829b1b8930f.tar.bz2 linaro-gcc-537e38b358fd975288272f278fc39829b1b8930f.zip |
libcc1: Clean compiler-name.h (PR70173)
Since the file is generated from a Makefile fragment, it needs to be
added to MOSTLYCLEANFILES. The directory itself is still not deleted
(just like the gnattools and gotools directories).
2016-04-11 Segher Boessenkool <segher@kernel.crashing.org>
libcc1/
PR bootstrap/70173
* Makefile.am (MOSTLYCLEANFILES): New, add compiler-name.h .
(compiler-name.h): Shorten recipe so that it fits the line.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234874 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libcc1/ChangeLog | 7 | ||||
-rw-r--r-- | libcc1/Makefile.am | 3 | ||||
-rw-r--r-- | libcc1/Makefile.in | 4 |
3 files changed, 12 insertions, 2 deletions
diff --git a/libcc1/ChangeLog b/libcc1/ChangeLog index 1efcb68e04b..a65af09c6e6 100644 --- a/libcc1/ChangeLog +++ b/libcc1/ChangeLog @@ -1,3 +1,10 @@ +2016-04-11 Segher Boessenkool <segher@kernel.crashing.org> + + PR bootstrap/70173 + * Makefile.am (MOSTLYCLEANFILES): New, add compiler-name.h . + (compiler-name.h): Shorten recipe so that it fits the line. + * Makefile.in: Regenerate. + 2016-03-14 Andreas Schwab <schwab@suse.de> * configure.ac (CONFIG_STATUS_DEPENDENCIES): Substitute. diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am index 7a274b3470c..b40820b2189 100644 --- a/libcc1/Makefile.am +++ b/libcc1/Makefile.am @@ -44,11 +44,12 @@ cc1lib_LTLIBRARIES = libcc1.la endif BUILT_SOURCES = compiler-name.h +MOSTLYCLEANFILES = compiler-name.h # Put this in a header so we don't run sed for each compilation. This # is also simpler to debug as one can easily see the constant. compiler-name.h: Makefile - echo "#define COMPILER_NAME \"`echo gcc | sed '$(transform)'`\"" > compiler-name.h + echo "#define COMPILER_NAME \"`echo gcc | sed '$(transform)'`\"" > $@ shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \ diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in index 9e003682363..79d39d3f46a 100644 --- a/libcc1/Makefile.in +++ b/libcc1/Makefile.in @@ -296,6 +296,7 @@ cc1libdir = $(libdir)/$(libsuffix) @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la BUILT_SOURCES = compiler-name.h +MOSTLYCLEANFILES = compiler-name.h shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \ marshall.cc marshall.hh rpc.hh status.hh @@ -563,6 +564,7 @@ install-strip: "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: @@ -672,7 +674,7 @@ override LDFLAGS := $(filter-out -fsanitize=address,$(LDFLAGS)) # Put this in a header so we don't run sed for each compilation. This # is also simpler to debug as one can easily see the constant. compiler-name.h: Makefile - echo "#define COMPILER_NAME \"`echo gcc | sed '$(transform)'`\"" > compiler-name.h + echo "#define COMPILER_NAME \"`echo gcc | sed '$(transform)'`\"" > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |