File:  [ELWIX - Embedded LightWeight unIX -] / embedtools / Makefile.in
Revision 1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Wed Jun 8 09:08:43 2011 UTC (12 years, 11 months ago) by misho
Branches: tools1_0
added autoconfig

#
# (C) 2009 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
# by Michael Pounov <misho@openbsd-bg.org>
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.2.1 2011/06/08 09:08:43 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>