Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-10-11 20:32:25 +0000
committereutarass2010-10-11 20:32:25 +0000
commit1e5bcbcf1470b30018aa1f59e9c6a516e84c1029 (patch)
treed73a88fdc0febd63ee80d9c27e581311a74450ae /examples
parent14e61ba5e0f9f995228e3dccdfe6c804831336e4 (diff)
downloadorg.eclipse.tcf-1e5bcbcf1470b30018aa1f59e9c6a516e84c1029.tar.gz
org.eclipse.tcf-1e5bcbcf1470b30018aa1f59e9c6a516e84c1029.tar.xz
org.eclipse.tcf-1e5bcbcf1470b30018aa1f59e9c6a516e84c1029.zip
TCF Agent: fixed few build errors that happen when the code is built with OPSYS=MinGW
Diffstat (limited to 'examples')
-rw-r--r--examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile b/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
index 49e8f3d23..48ecd6892 100644
--- a/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
+++ b/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
@@ -19,13 +19,13 @@ $(BINDIR)/agent$(EXTEXE): $(BINDIR)/main/main$(EXTOBJ) $(BINDIR)/libtcf$(EXTLIB)
$(CC) $(CFLAGS) -o $@ $(BINDIR)/main/main$(EXTOBJ) $(BINDIR)/libtcf$(EXTLIB) $(LIBS)
$(BINDIR)/%$(EXTOBJ): %.c $(HFILES) Makefile
- @mkdir -p $(dir $@)
+ @$(call MKDIR,$(dir $@))
$(CC) $(CFLAGS) -c -o $@ $<
$(BINDIR)/%$(EXTOBJ): $(TCF_AGENT_DIR)/%.c $(HFILES) Makefile
- @mkdir -p $(dir $@)
+ @$(call MKDIR,$(dir $@))
$(CC) $(CFLAGS) -c -o $@ $<
clean:
- rm -rf $(BINDIR)
+ $(call RMDIR,$(BINDIR))

Back to the top