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, 8 months ago) by misho
Branches: misho
CVS tags: start, cfg3_0
AITNET library for configs

SUBDIRS = inc lib 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>