From 03572e6a9da8d81f2aeb335d669c3dc4bd525def Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 5 Sep 2014 07:38:25 -0600 Subject: [PATCH] Add a 'make import' target --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6ce150562..6682d7bc6 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # apps/Makefile # # Copyright (C) 2011 Uros Platise. All rights reserved. -# Copyright (C) 2011-2013 Gregory Nutt. All rights reserved. +# Copyright (C) 2011-2014 Gregory Nutt. All rights reserved. # Authors: Uros Platise # Gregory Nutt # @@ -106,12 +106,15 @@ BIN = libapps$(LIBEXT) # Build targets all: $(BIN) -.PHONY: $(INSTALLED_APPS) context depend clean distclean +.PHONY: $(INSTALLED_APPS) import context depend clean distclean $(INSTALLED_APPS): $(Q) $(MAKE) -C $@ TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" -$(BIN): $(INSTALLED_APPS) +$(BIN): $(INSTALLED_APPS) + +import: + $(Q) $(MAKE) TOPDIR="$(APPDIR)/import" context: ifeq ($(CONFIG_WINDOWS_NATIVE),y)