Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-09-06 18:25:52 +0000
committereutarass2011-09-06 18:25:52 +0000
commitf940bce2770ec529a8d57acf6dd6ed81094d0ae8 (patch)
tree7f9ae201b93e4d0c107f112b0de4b1a68c686f3a /Makefile
parentfc3dcaa2c9180f139cd66aacf44b7636f52df063 (diff)
downloadorg.eclipse.tcf.agent-f940bce2770ec529a8d57acf6dd6ed81094d0ae8.tar.gz
org.eclipse.tcf.agent-f940bce2770ec529a8d57acf6dd6ed81094d0ae8.tar.xz
org.eclipse.tcf.agent-f940bce2770ec529a8d57acf6dd6ed81094d0ae8.zip
TCF Agent: fixed: Makefile.inc should be included before "include $(MAKE_INC)".
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 58844ea5..d0f3c644 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
TCF_AGENT_DIR=.
+include $(TCF_AGENT_DIR)/Makefile.inc
+
# include custom Makefile fragments if defined
ifdef MAKE_INC
include $(MAKE_INC)
endif
-include $(TCF_AGENT_DIR)/Makefile.inc
-
# frame pointers are needed for agent diagnostics to work properly
ifeq ($(CC),gcc)
OPTS += -fno-omit-frame-pointer

Back to the top