From 1b6f0e17752445668237167e88229adbb14cb64d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 8 Jan 2017 19:13:43 +1100 Subject: New preference data array structure in Ada, currently won't link --- makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 makefile (limited to 'makefile') 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 + + -- cgit