summaryrefslogtreecommitdiff
path: root/apps/examples/usbserial/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/usbserial/Makefile')
-rw-r--r--apps/examples/usbserial/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/examples/usbserial/Makefile b/apps/examples/usbserial/Makefile
index cd6e7599a..35c76ba89 100644
--- a/apps/examples/usbserial/Makefile
+++ b/apps/examples/usbserial/Makefile
@@ -48,7 +48,11 @@ COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
-BIN = $(APPDIR)/libapps$(LIBEXT)
+ifeq ($(WINTOOL),y)
+ BIN = "${shell cygpath -w $(APPDIR)/libapps$(LIBEXT)}"
+else
+ BIN = "$(APPDIR)/libapps$(LIBEXT)"
+endif
ROOTDEPPATH = --dep-path .
@@ -82,7 +86,7 @@ depend: .depend
clean:
@rm -f *.o *~ .*.swp .built
$(call CLEAN)
- @$(MAKE) -f Makefile.host clean TOPDIR=$(TOPDIR) APPDIR=$(APPDIR)
+ @$(MAKE) -f Makefile.host clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
distclean: clean
@rm -f Make.dep .depend