summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-10 07:37:43 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-10 07:37:43 -0600
commitaffcb091dfe86c33c3a4dca58005a1c0670dc8ce (patch)
treebea51f8be57aa1f91e3915a22d0658458727e0e5 /apps
parent988e5bbfdd35e79f2b2bb9047234e037c8235eef (diff)
downloadnuttx-affcb091dfe86c33c3a4dca58005a1c0670dc8ce.tar.gz
nuttx-affcb091dfe86c33c3a4dca58005a1c0670dc8ce.tar.bz2
nuttx-affcb091dfe86c33c3a4dca58005a1c0670dc8ce.zip
Fix some errors in the clean target of the windows native build
Diffstat (limited to 'apps')
-rw-r--r--apps/system/nxplayer/Makefile33
1 files changed, 16 insertions, 17 deletions
diff --git a/apps/system/nxplayer/Makefile b/apps/system/nxplayer/Makefile
index 8de9d4b02..812b9e7bf 100644
--- a/apps/system/nxplayer/Makefile
+++ b/apps/system/nxplayer/Makefile
@@ -40,47 +40,47 @@
include $(APPDIR)/Make.defs
ifeq ($(WINTOOL),y)
-INCDIROPT = -w
+INCDIROPT = -w
endif
# NxPlayer Library
-ASRCS =
-CSRCS = nxplayer.c
+ASRCS =
+CSRCS = nxplayer.c
# NxPlayer Application
-APPNAME = nxplayer
-PRIORITY = SCHED_PRIORITY_DEFAULT
-STACKSIZE = 2048
+APPNAME = nxplayer
+PRIORITY = SCHED_PRIORITY_DEFAULT
+STACKSIZE = 2048
ifeq ($(CONFIG_NXPLAYER_COMMAND_LINE),y)
CSRCS += nxplayer_main.c
endif
-AOBJS = $(ASRCS:.S=$(OBJEXT))
-COBJS = $(CSRCS:.c=$(OBJEXT))
+AOBJS = $(ASRCS:.S=$(OBJEXT))
+COBJS = $(CSRCS:.c=$(OBJEXT))
-SRCS = $(ASRCS) $(CSRCS)
-OBJS = $(AOBJS) $(COBJS)
+SRCS = $(ASRCS) $(CSRCS)
+OBJS = $(AOBJS) $(COBJS)
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
- BIN = ..\..\libapps$(LIBEXT)
+ BIN = ..\..\libapps$(LIBEXT)
else
ifeq ($(WINTOOL),y)
- BIN = ..\\..\\libapps$(LIBEXT)
+ BIN = ..\\..\\libapps$(LIBEXT)
else
- BIN = ../../libapps$(LIBEXT)
+ BIN = ../../libapps$(LIBEXT)
endif
endif
-ROOTDEPPATH = --dep-path .
+ROOTDEPPATH = --dep-path .
# Common build
-VPATH =
+VPATH =
-all: .built
+all: .built
.PHONY: context depend clean distclean
$(AOBJS): %$(OBJEXT): %.S
@@ -119,7 +119,6 @@ depend: .depend
clean:
$(call DELFILE, .built)
$(call CLEAN)
- $(Q) rm -rf ..$(DELIM)..$(DELIM)builtin$(DELIM)registry$(DELIM)$(APPNAME)_main.*
distclean: clean
$(call DELFILE, Make.dep)