summaryrefslogtreecommitdiff
path: root/apps/examples/usbserial
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/usbserial')
-rw-r--r--apps/examples/usbserial/Makefile6
-rw-r--r--apps/examples/usbserial/Makefile.host2
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/usbserial/Makefile b/apps/examples/usbserial/Makefile
index 2c34fa275..ec7219505 100644
--- a/apps/examples/usbserial/Makefile
+++ b/apps/examples/usbserial/Makefile
@@ -85,13 +85,13 @@ context:
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
@$(MAKE) -f Makefile.host clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/apps/examples/usbserial/Makefile.host b/apps/examples/usbserial/Makefile.host
index 9fb43269d..a98ed8d5f 100644
--- a/apps/examples/usbserial/Makefile.host
+++ b/apps/examples/usbserial/Makefile.host
@@ -60,5 +60,5 @@ $(BIN): $(SRC)
@$(HOSTCC) $(HOSTCFLAGS) $(DEFINES) $^ -o $@
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)