1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 05:25:21 +02:00

Bug 516813: don't mark all targets as secondary

Change-Id: I9da30b0504f1f89e927b9f735fc98a09bfea08b5
This commit is contained in:
Jonah Graham 2017-05-17 14:10:23 +01:00
parent b48696a6ea
commit 7f8440b6b2
33 changed files with 2 additions and 35 deletions

View file

@ -40,6 +40,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -40,6 +40,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -40,6 +40,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -53,6 +53,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -53,6 +53,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -39,6 +39,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -54,6 +54,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -53,6 +53,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -50,6 +50,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -32,6 +32,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -34,6 +34,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -32,6 +32,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -48,6 +48,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -50,6 +50,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -53,6 +53,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -65,7 +65,6 @@ post-build:
-echo 'executing Post-Build Step'
-@echo ' '
.PHONY: all clean dependents
.SECONDARY: main-build pre-build post-build
.PHONY: all clean dependents main-build pre-build post-build
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -39,6 +39,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -54,6 +54,5 @@ clean:
secondary-outputs: $(TEST30_1_GNU_SO_CJPEG_OUTPUT_OUTPUTS)
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -51,6 +51,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -32,6 +32,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -38,6 +38,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -61,6 +61,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -61,6 +61,5 @@ clean:
-@echo ' '
.PHONY: all clean dependents
.SECONDARY:
-include ../makefile.targets

View file

@ -1510,8 +1510,7 @@ public class GnuMakefileGenerator implements IManagedBuilderMakefileGenerator2 {
}
// Add all the needed dummy and phony targets
buffer.append(".PHONY: all clean dependents").append(NEWLINE); //$NON-NLS-1$
buffer.append(".SECONDARY:"); //$NON-NLS-1$
buffer.append(".PHONY: all clean dependents"); //$NON-NLS-1$
if (prebuildStep.length() > 0) {
buffer.append(WHITESPACE).append(MAINBUILD).append(WHITESPACE).append(PREBUILD);
}