File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / Attic / Makefile
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Thu Aug 28 13:17:41 2008 UTC (15 years, 11 months ago) by misho
Branches: misho
CVS tags: start, cfg3_0
AITNET library for configs

    1: SUBDIRS = inc lib src
    2: 
    3: all:
    4: 	@for i in ${SUBDIRS}; do \
    5: 		cd $$i; \
    6: 		${MAKE}; \
    7: 		cd ..; \
    8: 	done
    9: 
   10: depend:
   11: 	@for i in ${SUBDIRS}; do \
   12: 		cd $$i; \
   13: 		${MAKE} $@; \
   14: 		cd ..; \
   15: 	done
   16: 
   17: clean:
   18: 	@for i in ${SUBDIRS}; do \
   19: 		cd $$i; \
   20: 		${MAKE} $@; \
   21: 		cd ..; \
   22: 	done
   23: 
   24: 
   25: install:
   26: 	@for i in ${SUBDIRS}; do \
   27: 		cd $$i; \
   28: 		${MAKE} $@; \
   29: 		cd ..; \
   30: 	done
   31: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>