diff options
-rw-r--r-- | Everything.agda | 11 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/Everything.agda b/Everything.agda new file mode 100644 index 0000000..76beef6 --- /dev/null +++ b/Everything.agda @@ -0,0 +1,11 @@ +-- The sole purpose of this module is to ease compilation of everything. +module Everything where + +import Generic +import FinMap +import CheckInsert +import FreeTheorems +import BFF +import Bidir +import LiftGet +import Precond 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 |