summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 20d6298f456ba17ff20edf52e364067fb3984c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback