Move netutils header files from include/net/uip to include/apps/netutils

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3399 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-03-19 16:54:35 +00:00
parent d218fdf1b5
commit a6cd74cddb
2 changed files with 6 additions and 4 deletions

View File

@ -40,6 +40,8 @@ ifeq ($(WINTOOL),y)
INCDIROPT = -w INCDIROPT = -w
endif endif
APPDIR = ${shell pwd}
# Application Directories # Application Directories
# SUBDIRS is the list of all directories containing Makefiles. It is used # SUBDIRS is the list of all directories containing Makefiles. It is used
@ -115,7 +117,7 @@ $(COBJS): %$(OBJEXT): %.c
$(BUILTIN_APPS_BUILT): $(BUILTIN_APPS_BUILT):
@for dir in $(BUILTIN_APPS_DIR) ; do \ @for dir in $(BUILTIN_APPS_DIR) ; do \
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" ; \ $(MAKE) -C $$dir TOPDIR="$(TOPDIR)" APPDIR=$(APPDIR); \
done done
$(BIN): $(OBJS) $(BUILTIN_APPS_BUILT) $(BIN): $(OBJS) $(BUILTIN_APPS_BUILT)
@ -131,13 +133,13 @@ $(BIN): $(OBJS) $(BUILTIN_APPS_BUILT)
@touch $@ @touch $@
@for dir in $(BUILTIN_APPS_DIR) ; do \ @for dir in $(BUILTIN_APPS_DIR) ; do \
rm -f $$dir/.depend ; \ rm -f $$dir/.depend ; \
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" depend ; \ $(MAKE) -C $$dir TOPDIR="$(TOPDIR)" APPDIR=$(APPDIR) depend ; \
done done
depend: .depend depend: .depend
define MAKECLEAN define MAKECLEAN
@(MAKE) -C $1 $2 TOPDIR="$(TOPDIR)" @(MAKE) -C $1 $2 TOPDIR="$(TOPDIR)" APPDIR=$(APPDIR)
endef endef
clean: clean:

View File

@ -43,7 +43,7 @@ all: nothing
nothing: nothing:
define DOMAKE define DOMAKE
@(MAKE) -C $1 $2 TOPDIR="$(TOPDIR)" @(MAKE) -C $1 $2 TOPDIR="$(TOPDIR) APPDIR=$(APPDIR)"
endef endef
depend: depend: