summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHelmut Grohne <grohne@cs.uni-bonn.de>2014-01-30 08:07:29 +0100
committerHelmut Grohne <grohne@cs.uni-bonn.de>2014-01-30 08:07:29 +0100
commit26e2fea33aae257440e5571fb3f7e784938403e0 (patch)
treee2c6d087dbb7e9476cf2e613125840923b3f139a /Makefile
parentb0eb7ada208d33eb82ec27cb7d40b9fa59646c92 (diff)
downloadbidiragda-26e2fea33aae257440e5571fb3f7e784938403e0.tar.gz
simplify compilation of the whole source
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5dfe960
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+AGDA ?= agda
+AGDALIB ?= /usr/share/agda-stdlib
+
+all:Everything.agdai
+clean:
+ rm -f *.agdai
+Everything.agdai:$(wildcard *.agda)
+ $(AGDA) -i. -i$(AGDALIB) Everything.agda