summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-01-08 19:13:43 +1100
committerJed Barber <jjbarber@y7mail.com>2017-01-08 19:13:43 +1100
commit1b6f0e17752445668237167e88229adbb14cb64d (patch)
tree49ec65249d88936f392e8620d32d6ea1ff953f20 /makefile
parent9c88780375c5fd42f305746156484257c02245c7 (diff)
New preference data array structure in Ada, currently won't link
Diffstat (limited to 'makefile')
-rw-r--r--makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..cb953a2
--- /dev/null
+++ b/makefile
@@ -0,0 +1,18 @@
+
+
+all: testmain
+
+
+
+testmain: ada_array
+ ghc --make src/testmain.hs -isrc:build -odir build -outputdir build \
+ -hidir build -stubdir build -dumpdir build -o bin/testmain build/ada_array.o
+
+
+
+ada_array:
+ gnatmake -Isrc -D build -c preference_arrays
+ gnatbind -n build/preference_arrays
+ gnatlink -r -nostdlib -o build/ada_array.o build/preference_arrays.ali
+
+