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, 2 months 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

    1: #
    2: # (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.1.1.1 2010/03/24 16:00:14 misho Exp $
    7: #
    8: prefix = @prefix@
    9: exec_prefix = @exec_prefix@
   10: 
   11: SUBDIRS = inc lib src
   12: 
   13: all:
   14: 	@for i in ${SUBDIRS}; do \
   15: 		cd $$i; \
   16: 		${MAKE}; \
   17: 		cd ..; \
   18: 	done
   19: 
   20: depend:
   21: 	@for i in ${SUBDIRS}; do \
   22: 		cd $$i; \
   23: 		${MAKE} $@; \
   24: 		cd ..; \
   25: 	done
   26: 
   27: clean:
   28: 	@for i in ${SUBDIRS}; do \
   29: 		cd $$i; \
   30: 		${MAKE} $@; \
   31: 		cd ..; \
   32: 	done
   33: 
   34: install:
   35: 	@for i in ${SUBDIRS}; do \
   36: 		cd $$i; \
   37: 		${MAKE} $@; \
   38: 		cd ..; \
   39: 	done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>