File:  [ELWIX - Embedded LightWeight unIX -] / libaitcrc / Makefile.in
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Nov 5 17:02:55 2008 UTC (15 years, 5 months ago) by misho
Branches: misho, MAIN
CVS tags: start, crc2_4, crc2_3, crc2_2, crc2_1, crc2_0, crc1_2, crc1_1, HEAD, CRC2_3, CRC2_2, CRC2_1, CRC2_0, CRC1_2, CRC1_1
AITNET library for computing CRC

#
# (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.1.1 2008/11/05 17:02:55 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>