summaryrefslogtreecommitdiff
path: root/apps/examples/posix_spawn
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-06 08:00:47 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-06 08:00:47 -0600
commit5a79aa40e5a82a8358df0ab581f436df1e204134 (patch)
tree4d168ff54ec4177c03d24c074a82f5734da2b3a5 /apps/examples/posix_spawn
parent0c6521fb7bcde9542ccb41d84aaf075f9871e8df (diff)
downloadnuttx-5a79aa40e5a82a8358df0ab581f436df1e204134.tar.gz
nuttx-5a79aa40e5a82a8358df0ab581f436df1e204134.tar.bz2
nuttx-5a79aa40e5a82a8358df0ab581f436df1e204134.zip
Add an install target to all makefiles. For the import build, the top-level Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
Diffstat (limited to 'apps/examples/posix_spawn')
-rw-r--r--apps/examples/posix_spawn/Makefile2
-rw-r--r--apps/examples/posix_spawn/filesystem/hello/Makefile1
-rw-r--r--apps/examples/posix_spawn/filesystem/redirect/Makefile1
3 files changed, 4 insertions, 0 deletions
diff --git a/apps/examples/posix_spawn/Makefile b/apps/examples/posix_spawn/Makefile
index 77b6383ed..8ef9e81d7 100644
--- a/apps/examples/posix_spawn/Makefile
+++ b/apps/examples/posix_spawn/Makefile
@@ -85,6 +85,8 @@ build:
@$(MAKE) -C filesystem TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
@$(MAKE) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" build_lib
+install:
+
context:
# We can't make dependencies in this directory because the required
diff --git a/apps/examples/posix_spawn/filesystem/hello/Makefile b/apps/examples/posix_spawn/filesystem/hello/Makefile
index dbb52d760..4097c6f86 100644
--- a/apps/examples/posix_spawn/filesystem/hello/Makefile
+++ b/apps/examples/posix_spawn/filesystem/hello/Makefile
@@ -56,5 +56,6 @@ clean:
$(call CLEAN)
install:
+
$(Q) mkdir -p $(ROMFS_DIR)
$(Q) install $(BIN) $(ROMFS_DIR)/$(BIN)
diff --git a/apps/examples/posix_spawn/filesystem/redirect/Makefile b/apps/examples/posix_spawn/filesystem/redirect/Makefile
index 5d6d499e1..c6259d819 100644
--- a/apps/examples/posix_spawn/filesystem/redirect/Makefile
+++ b/apps/examples/posix_spawn/filesystem/redirect/Makefile
@@ -56,5 +56,6 @@ clean:
$(call CLEAN)
install:
+
$(Q) mkdir -p $(ROMFS_DIR)
$(Q) install -m 0755 $(BIN) $(ROMFS_DIR)/$(BIN)