File:  [ELWIX - Embedded LightWeight unIX -] / libaitsync / Makefile.in
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 24 16:00:14 2010 UTC (14 years, 1 month ago) by misho
Branches: misho, MAIN
CVS tags: sync2_3, sync2_2, sync2_1, sync2_0, sync1_3, sync1_2, sync1_1, sync1_0, start, SYNC2_2, SYNC2_1, SYNC2_0, SYNC1_3, SYNC1_2, SYNC1_1, SYNC1_0, HEAD
libaitsync Delta patch library

#
# (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.1.1 2010/03/24 16:00:14 misho Exp $
#
prefix = @prefix@
exec_prefix = @exec_prefix@

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>