summaryrefslogtreecommitdiff
path: root/nuttx/Makefile.win
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 /nuttx/Makefile.win
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 'nuttx/Makefile.win')
-rw-r--r--nuttx/Makefile.win8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/Makefile.win b/nuttx/Makefile.win
index d224ea8b5..9fa1248c2 100644
--- a/nuttx/Makefile.win
+++ b/nuttx/Makefile.win
@@ -806,13 +806,13 @@ endif
apps_clean:
ifneq ($(APPDIR),)
- $(Q) $(MAKE) -C "$(TOPDIR)\$(APPDIR)" TOPDIR="$(TOPDIR)" clean
+ $(Q) $(MAKE) -C "$(APPDIR)" TOPDIR="$(TOPDIR)" clean
endif
apps_distclean:
ifneq ($(APPDIR),)
$(call DELFILE, _SAVED_APPS_config
- $(Q) if exist "$(TOPDIR)\$(APPDIR)\.config" ( cp "$(TOPDIR)\$(APPDIR)\.config" _SAVED_APPS_config )
- $(Q) $(MAKE) -C "$(TOPDIR)\$(APPDIR)" TOPDIR="$(TOPDIR)" distclean
- $(Q) if exist _SAVED_APPS_config ( mv _SAVED_APPS_config "$(TOPDIR)\$(APPDIR)\.config" )
+ $(Q) if exist "$(APPDIR)\.config" ( cp "$(APPDIR)\.config" _SAVED_APPS_config )
+ $(Q) $(MAKE) -C "$(APPDIR)" TOPDIR="$(TOPDIR)" distclean
+ $(Q) if exist _SAVED_APPS_config ( mv _SAVED_APPS_config "$(APPDIR)\.config" )
endif