Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-05-18 19:58:35 +0000
committereutarass2010-05-18 19:58:35 +0000
commit0b33020ffc60af42af98b7d7a2c6cea67c509801 (patch)
tree2693137561f86487b9fc96d2405cc7f0f29974b9 /examples
parentbc624df6fc6bf9dac5a162808c4350fd8b7b8c23 (diff)
downloadorg.eclipse.tcf-0b33020ffc60af42af98b7d7a2c6cea67c509801.tar.gz
org.eclipse.tcf-0b33020ffc60af42af98b7d7a2c6cea67c509801.tar.xz
org.eclipse.tcf-0b33020ffc60af42af98b7d7a2c6cea67c509801.zip
Bug 312840: Unable to effectively include Makefile.inc in make systems which use the CFLAGS variable
Diffstat (limited to 'examples')
-rw-r--r--examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile b/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
index 0d7a685d2..49e8f3d23 100644
--- a/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
+++ b/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
@@ -2,7 +2,7 @@ TCF_AGENT_DIR=../../agent
include $(TCF_AGENT_DIR)/Makefile.inc
-override CFLAGS := $(foreach dir,$(INCDIRS),-I$(dir)) $(CFLAGS)
+override CFLAGS += $(foreach dir,$(INCDIRS),-I$(dir)) $(OPTS)
HFILES := $(foreach dir,$(SRCDIRS),$(wildcard $(dir)/*.h)) $(HFILES)
CFILES := $(sort $(foreach dir,$(SRCDIRS),$(wildcard $(dir)/*.c)) $(CFILES))

Back to the top