# @configure_input@

### Path settings
prefix		= @prefix@
exec_prefix	= @exec_prefix@
bindir		= @bindir@
mandir		= @mandir@
libdir		= @libdir@
includedir	= @includedir@

srcdir		= @srcdir@
top_srcdir	= @top_srcdir@

PACKAGE_NAME	= @PACKAGE_NAME@
PACKAGE_VERSION	= @PACKAGE_VERSION@

@ENCAP_DEFS@

### Installation programs and flags
INSTALL		= @INSTALL@
INSTALL_PROGRAM	= @INSTALL_PROGRAM@
INSTALL_DATA	= @INSTALL_DATA@
MKDIR		= @MKDIR@

@SET_MAKE@


### Makefile rules - no user-servicable parts below

SUBDIRS		= lib fget doc test

all:
	for n in ${SUBDIRS}; do \
		( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
	done

.PHONY: test install clean distclean

test:
	cd test && ${MAKE} $@ ${MAKE_FLAGS}

install:
	for n in ${SUBDIRS}; do \
		( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
	done
	@ENCAP_INSTALL_RULES@

clean:
	for n in ${SUBDIRS}; do \
		( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
	done

distclean:
	for n in ${SUBDIRS}; do \
		( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
	done
	rm -f config.cache config.log config.status config.h Makefile



syntax highlighted by Code2HTML, v. 0.9.1