diff options
author | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-07-31 15:42:55 -0300 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-07-31 15:42:55 -0300 |
commit | 41bb87a198d73a019a390e0f4d1254e22fac0d71 (patch) | |
tree | 639497dfdd532bd90a656b64c5834f1b3208c082 /gcc | |
parent | e4c5fbf07b3aec4c896b4eaafeb9f34cea97bb56 (diff) | |
download | gcc-41bb87a198d73a019a390e0f4d1254e22fac0d71.zip gcc-41bb87a198d73a019a390e0f4d1254e22fac0d71.tar.gz gcc-41bb87a198d73a019a390e0f4d1254e22fac0d71.tar.bz2 |
bootstrap 1
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ae2827e..60d36bd 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1114,7 +1114,7 @@ POSTCOMPILE = endif .cc.o .c.o: - $(COMPILE) $< + +$(COMPILE) $< $(POSTCOMPILE) # @@ -2196,7 +2196,7 @@ CFLAGS-c-family/c-pch.o += -DHOST_MACHINE=\"$(host)\" \ -DTARGET_MACHINE=\"$(target)\" default-c.o: config/default-c.c - $(COMPILE) $< + +$(COMPILE) $< $(POSTCOMPILE) # Files used by all variants of C and some other languages. @@ -2207,7 +2207,7 @@ prefix.o: $(BASEVER) # Files used by the D language front end. default-d.o: config/default-d.c - $(COMPILE) $< + +$(COMPILE) $< $(POSTCOMPILE) # Language-independent files. @@ -2298,11 +2298,11 @@ pass-instances.def: $(srcdir)/passes.def $(PASSES_EXTRA) \ $(srcdir)/passes.def $(PASSES_EXTRA) > pass-instances.def $(out_object_file): $(out_file) - $(COMPILE) $< + +$(COMPILE) $< $(POSTCOMPILE) $(common_out_object_file): $(common_out_file) - $(COMPILE) $< + +$(COMPILE) $< $(POSTCOMPILE) # # Generate header and source files from the machine description, |