summaryrefslogtreecommitdiff
path: root/Makefile
blob: fc92ecc37cb13b229d8fa417cd20074e48877522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
builddir = builds

.PHONY: _default_build_ all
_default_build_: all
all %:
	@if test -e $(builddir); then \
		echo cd $(builddir); \
		cd $(builddir); \
		echo $(MAKE) $@; \
		$(MAKE) $@; \
	else \
		echo; \
		echo 'Run configure first, or type "make" in a configured build directory.'; \
		echo; \
	fi

# synonyms for "check"
.PHONY: regress test
regress test: check

submission:
	if [ ! -e configure ]; then ./autogen.sh; fi
	./configure competition
	$(MAKE)
	mkdir -p cvc4-smtcomp-2010
	cp -p $(top_builddir)/bin/cvc4 cvc4-smtcomp-2010/run
	tar cfz cvc4-smtcomp-2010.tgz cvc4-smtcomp-2010
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback