# Sample toc-driven top-level Makefile.
default: all
include toc.make

SUBDIRS = src

toc.make:
	@echo "You must run configure once before running make."; exit 1

DISTCLEAN_FILES += $(wildcard toc.$(PACKAGE_NAME).make) \
	$(PACKAGE_NAME)-config \
	$(PACKAGE_NAME).pc


DIST_FILES += configure configure.$(PACKAGE_NAME) \
	find_toc.sh toc.$(PACKAGE_NAME).make.at toc.$(PACKAGE_NAME).help \
	ChangeLog INSTALL LICENSE

INSTALL_BINS = $(PACKAGE_NAME)-config
INSTALL_PKGCONFIG = $(PACKAGE_NAME).pc

all: toc.make subdirs


