File:  [ELWIX - Embedded LightWeight unIX -] / tftpd / Makefile.in
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Fri Feb 14 15:38:37 2014 UTC (10 years, 3 months ago) by misho
Branches: misho, MAIN
CVS tags: tftp1_3, tftp1_2, tftp1_1, tftp0_5, tftp0_4, tftp0_3, tftp0_2, start, TFTP1_2, TFTP1_1, TFTP1_0, TFTP0_4, TFTP0_3, TFTP0_2, HEAD
ELWIX tftpd server

    1: #
    2: # (C) 2014 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 2014/02/14 15:38:37 misho Exp $
    7: #
    8: 
    9: SUBDIRS = bin inc src
   10: 
   11: all:
   12: 	@for i in ${SUBDIRS}; do \
   13: 		cd $$i; \
   14: 		${MAKE}; \
   15: 		cd ..; \
   16: 	done
   17: 
   18: depend:
   19: 	@for i in ${SUBDIRS}; do \
   20: 		cd $$i; \
   21: 		${MAKE} $@; \
   22: 		cd ..; \
   23: 	done
   24: 
   25: clean:
   26: 	@for i in ${SUBDIRS}; do \
   27: 		cd $$i; \
   28: 		${MAKE} $@; \
   29: 		cd ..; \
   30: 	done
   31: 
   32: install:
   33: 	@for i in ${SUBDIRS}; do \
   34: 		cd $$i; \
   35: 		${MAKE} $@; \
   36: 		cd ..; \
   37: 	done

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