Browse Source

Fix various build-related typos

git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5358 42af7a65-404d-4744-a932-0658087f49c3
sbg
patacongo 12 years ago
parent
commit
afda776368
  1. 1
      apps/Makefile
  2. 4
      apps/examples/Makefile
  3. 2
      apps/examples/cxxtest/Makefile
  4. 2
      apps/examples/elf/Makefile
  5. 2
      apps/examples/helloxx/Makefile
  6. 2
      apps/examples/nettest/Makefile
  7. 2
      apps/examples/nxflat/Makefile
  8. 2
      apps/examples/romfs/Makefile
  9. 2
      apps/examples/udp/Makefile
  10. 4
      apps/graphics/Makefile
  11. 4
      apps/interpreters/Makefile
  12. 4
      apps/netutils/Makefile
  13. 12
      apps/system/Makefile
  14. 6
      nuttx/tools/Config.mk

1
apps/Makefile

@ -35,7 +35,6 @@ @@ -35,7 +35,6 @@
############################################################################
-include $(TOPDIR)/Make.defs
-include $(TOPDIR)/.config
APPDIR = ${shell pwd}

4
apps/examples/Makefile

@ -104,13 +104,13 @@ all: nothing @@ -104,13 +104,13 @@ all: nothing
define SDIR_template
$(1)_$(2):
$(MAKE) -C $(1) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
$(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
endef
$(foreach SDIR, $(CNTXTDIRS), $(eval $(call SDIR_template,$(SDIR),context)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),depend)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),disclean)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
nothing:

2
apps/examples/cxxtest/Makefile

@ -73,7 +73,7 @@ STACKSIZE = 4096 @@ -73,7 +73,7 @@ STACKSIZE = 4096
VPATH =
all: .built
.PHONY: clean depend disclean chkcxx
.PHONY: clean depend distclean chkcxx
chkcxx:
ifneq ($(CONFIG_HAVE_CXX),y)

2
apps/examples/elf/Makefile

@ -65,7 +65,7 @@ ROOTDEPPATH = --dep-path . --dep-path tests @@ -65,7 +65,7 @@ ROOTDEPPATH = --dep-path . --dep-path tests
VPATH = tests
all: .built
.PHONY: really_build clean_tests clean depend disclean
.PHONY: really_build clean_tests clean depend distclean
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)

2
apps/examples/helloxx/Makefile

@ -73,7 +73,7 @@ STACKSIZE = 2048 @@ -73,7 +73,7 @@ STACKSIZE = 2048
VPATH =
all: .built
.PHONY: clean depend disclean chkcxx
.PHONY: clean depend distclean chkcxx
chkcxx:
ifneq ($(CONFIG_HAVE_CXX),y)

2
apps/examples/nettest/Makefile

@ -96,7 +96,7 @@ STACKSIZE = 2048 @@ -96,7 +96,7 @@ STACKSIZE = 2048
VPATH =
all: .built $(HOST_BIN)
.PHONY: clean depend disclean
.PHONY: clean depend distclean
$(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)

2
apps/examples/nxflat/Makefile

@ -65,7 +65,7 @@ ROOTDEPPATH = --dep-path . @@ -65,7 +65,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
.PHONY: headers clean depend disclean
.PHONY: headers clean depend distclean
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)

2
apps/examples/romfs/Makefile

@ -65,7 +65,7 @@ ROOTDEPPATH = --dep-path . @@ -65,7 +65,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
.PHONY: checkgenromfs clean depend disclean
.PHONY: checkgenromfs clean depend distclean
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)

2
apps/examples/udp/Makefile

@ -87,7 +87,7 @@ ROOTDEPPATH = --dep-path . @@ -87,7 +87,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
.PHONY: clean depend disclean
.PHONY: clean depend distclean
$(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)

4
apps/graphics/Makefile

@ -48,13 +48,13 @@ all: nothing @@ -48,13 +48,13 @@ all: nothing
define SDIR_template
$(1)_$(2):
$(MAKE) -C $(1) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
$(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
endef
$(foreach SDIR, $(CNTXTDIRS), $(eval $(call SDIR_template,$(SDIR),context)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),depend)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),disclean)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
nothing:

4
apps/interpreters/Makefile

@ -52,12 +52,12 @@ all: nothing @@ -52,12 +52,12 @@ all: nothing
define SDIR_template
$(1)_$(2):
$(MAKE) -C $(1) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
$(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
endef
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),depend)))
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),disclean)))
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
nothing:

4
apps/netutils/Makefile

@ -49,12 +49,12 @@ all: nothing @@ -49,12 +49,12 @@ all: nothing
define SDIR_template
$(1)_$(2):
$(MAKE) -C $(1) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
$(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
endef
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),depend)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),disclean)))
$(foreach SDIR, $(SUBDIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
nothing:

12
apps/system/Makefile

@ -41,9 +41,15 @@ SUBDIRS = free i2c install readline poweroff ramtron sdcard sysinfo @@ -41,9 +41,15 @@ SUBDIRS = free i2c install readline poweroff ramtron sdcard sysinfo
# Create the list of installed runtime modules (INSTALLED_DIRS)
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
define ADD_DIRECTORY
INSTALLED_DIRS += ${shell if [ -r $1/Makefile ]; then echo "$1"; fi}
INSTALLED_DIRS += $(if $(wildcard .\$1\Makefile),$1,)
endef
else
define ADD_DIRECTORY
INSTALLED_DIRS += $(if $(wildcard ./$1/Makefile),$1,)
endef
endif
$(foreach DIR, $(SUBDIRS), $(eval $(call ADD_DIRECTORY,$(DIR))))
@ -52,12 +58,12 @@ all: nothing @@ -52,12 +58,12 @@ all: nothing
define SDIR_template
$(1)_$(2):
$(MAKE) -C $(1) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
$(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
endef
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),depend)))
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),disclean)))
$(foreach SDIR, $(INSTALLED_DIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
nothing:

6
nuttx/tools/Config.mk

@ -154,10 +154,12 @@ define ARCHIVE @@ -154,10 +154,12 @@ define ARCHIVE
endef
endif
define CLEAN
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
define CLEAN
$(Q) rm -f *.o *.a
endef
else
define CLEAN
$(Q) rm -f *.o *.a *~ .*.swp
endif
endef
endif

Loading…
Cancel
Save