summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: bade9cd15dfab67e5b05d09d522faf67b527b4f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AM_CXXFLAGS = -Wall

AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I config

SUBDIRS = src test doc contrib

@mk_include@ @top_srcdir@/Makefile.reconf_args

.PHONY: production debug default competition
production debug default competition:
	cd @top_srcdir@; \
	dir="builds/`config/config.guess`/`config/build-type $@ $(BTARGS)`"; \
	if test -e "$$dir"; then \
		cd "$$dir" && $(MAKE); \
	else \
		./configure --with-build=$@ $(CONFARGS) && $(MAKE); \
	fi

.PHONY: regress0 regress1 regress2 regress3
regress0 regress1 regress2 regress3:
	(cd test && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback