From cd19f6d867bbe3da36b30f9897aeb3b65e0eee08 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 10 Apr 2011 16:08:08 +0000 Subject: Changes for clean build of app/ directory with Windows toolchain git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3488 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/thttpd/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'apps/examples/thttpd/Makefile') diff --git a/apps/examples/thttpd/Makefile b/apps/examples/thttpd/Makefile index 4d39d7d17..f58e1c526 100644 --- a/apps/examples/thttpd/Makefile +++ b/apps/examples/thttpd/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 . @@ -66,7 +70,7 @@ $(COBJS): %$(OBJEXT): %.c $(call COMPILE, $<, $@) headers: - @$(MAKE) -C content TOPDIR=$(TOPDIR) APPDIR=$(APPDIR) CROSSDEV=$(CROSSDEV) + @$(MAKE) -C content TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV) .built: headers $(OBJS) @( for obj in $(OBJS) ; do \ @@ -84,7 +88,7 @@ depend: .depend clean: @rm -f *.o *~ .*.swp .built - @make -C content clean TOPDIR=$(TOPDIR) APPDIR=$(APPDIR) CROSSDEV=$(CROSSDEV) + @make -C content clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV) $(call CLEAN) distclean: clean -- cgit v1.2.3