File:  [ELWIX - Embedded LightWeight unIX -] / embedtools / Attic / Makefile
Revision 1.1.1.1.2.5: download - view: text, annotated - select for diffs - revision graph
Thu Nov 12 14:04:19 2009 UTC (14 years, 8 months ago) by misho
Branches: tools1_0
Diff to: branchpoint 1.1.1.1: preferred, unified
*** empty log message ***

    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,v 1.1.1.1.2.5 2009/11/12 14:04:19 misho Exp $
    7: #
    8: 
    9: SUBDIRS = bin inc src
   10: 
   11: 
   12: all:
   13: 	@for i in ${SUBDIRS}; do \
   14: 		cd $$i; \
   15: 		${MAKE} $@; \
   16: 		cd ..; \
   17: 	done
   18: 
   19: depend:
   20: 	@for i in ${SUBDIRS}; do \
   21: 		cd $$i; \
   22: 		${MAKE} $@; \
   23: 		cd ..; \
   24: 	done
   25: 
   26: clean:
   27: 	@for i in ${SUBDIRS}; do \
   28: 		cd $$i; \
   29: 		${MAKE} $@; \
   30: 		cd ..; \
   31: 	done
   32: 
   33: install:
   34: 	@for i in ${SUBDIRS}; do \
   35: 		cd $$i; \
   36: 		${MAKE} $@; \
   37: 		cd ..; \
   38: 	done

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