TCF Agent: fixed: Makefile.inc should be included before "include $(MAKE_INC)".
diff --git a/Makefile b/Makefile
index 58844ea..d0f3c64 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