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, 9 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
#
# (C) 2014 by Michael Pounov <misho@openbsd-bg.org>
# AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.1.1 2014/02/14 15:38:37 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>