Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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