File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / Makefile.in
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Fri Jan 31 00:03:14 2025 UTC (2 months, 2 weeks ago) by misho
Branches: MAIN
CVS tags: cfg9_6, HEAD, CFG9_5
Version 9.5

#
# (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.3 2025/01/31 00:03:14 misho Exp $
#

prefix = @prefix@
exec_prefix = @exec_prefix@

SUBDIRS = bin 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>