File:  [ELWIX - Embedded LightWeight unIX -] / embedtools / Attic / Makefile
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Thu Nov 12 10:35:55 2009 UTC (14 years, 6 months ago) by misho
Branches: MAIN
CVS tags: HEAD
Initial revision

#
# (C) 2009 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
# by Michael Pounov <misho@openbsd-bg.org>
#
# $Author: misho $
# $Id: Makefile,v 1.1 2009/11/12 10:35:55 misho Exp $
#

SUBDIRS = bin inc src

all:
	@for i in ${SUBDIRS}; do \
		cd $$i; \
		${MAKE} $@; \
		cd ..; \
	done

depend:
	@for i in ${SUBDIRS}; do \
		cd $$i; \
		${MAKE} $@; \
		cd ..; \
	done

clean:
	@for i in ${SUBDIRS}; do \
		cd $$i; \
		${MAKE} $@; \
		cd ..; \
	done

install:
	@for i in ${SUBDIRS}; do \
		cd $$i; \
		${MAKE} $@; \
		cd ..; \
	done

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