File:  [ELWIX - Embedded LightWeight unIX -] / embedtools / Makefile.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Wed Jun 8 12:45:40 2011 UTC (12 years, 11 months ago) by misho
Branches: MAIN
CVS tags: tools3_0, tools2_9, tools2_8, tools2_7, tools2_6, tools2_5, tools2_4, tools2_3, tools2_2, tools2_1, tools2_0, tools1_2, tools1_1, TOOLS2_9, TOOLS2_8, TOOLS2_7, TOOLS2_6, TOOLS2_5, TOOLS2_4, TOOLS2_3, TOOLS2_2, TOOLS2_1, TOOLS2_0, TOOLS1_2, TOOLS1_1, TOOLS1_0, HEAD
new ver

    1: #
    2: # (C) 2009 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
    3: # by Michael Pounov <misho@openbsd-bg.org>
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.2 2011/06/08 12:45:40 misho Exp $
    7: #
    8: 
    9: SUBDIRS = bin inc src
   10: 
   11: all:
   12: 	@for i in ${SUBDIRS}; do \
   13: 		cd $$i; \
   14: 		${MAKE} $@; \
   15: 		cd ..; \
   16: 	done
   17: 
   18: depend:
   19: 	@for i in ${SUBDIRS}; do \
   20: 		cd $$i; \
   21: 		${MAKE} $@; \
   22: 		cd ..; \
   23: 	done
   24: 
   25: clean:
   26: 	@for i in ${SUBDIRS}; do \
   27: 		cd $$i; \
   28: 		${MAKE} $@; \
   29: 		cd ..; \
   30: 	done
   31: 
   32: install:
   33: 	@for i in ${SUBDIRS}; do \
   34: 		cd $$i; \
   35: 		${MAKE} $@; \
   36: 		cd ..; \
   37: 	done

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