File:  [ELWIX - Embedded LightWeight unIX -] / suX / Makefile.in
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Fri May 20 16:02:05 2011 UTC (12 years, 11 months ago) by misho
Branches: misho, MAIN
CVS tags: sux3_4, sux3_3, sux3_2, sux3_1, sux3_0, sux2_1, sux2_0, start, SUX3_3, SUX3_2, SUX3_1, SUX3_0, SUX2_1, SUX2_0, HEAD
suX WWW wrapper suexec helper project

#
# (C) 2011 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
#  by Michael Pounov <misho@elwix.org>
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.1.1 2011/05/20 16:02:05 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>