codegen: {put,get}static for static field access
[mate.git] / Makefile
1 SHELL := bash
2
3 JAVAC := javac
4 JAVA_FILES := $(wildcard tests/*.java)
5 CLASS_FILES := $(JAVA_FILES:.java=.class)
6 HS_FILES := $(wildcard Mate/*.hs)
7 O_FILES = $(shell ls Mate/*.o) $(wildcard ffi/*.o)
8 PACKAGES_ := bytestring harpy hs-java
9 PACKAGES := $(addprefix -package ,$(PACKAGES_))
10
11 GHC_OPT := -dynamic -Wall -O0 -fno-warn-unused-do-bind
12 GHC_LD := -optl-Xlinker -optl-x
13
14
15 .PHONY: all test clean ghci
16
17 all: mate $(CLASS_FILES)
18
19 test: mate $(CLASS_FILES)
20         ./$< tests/Fib | grep mainresult
21         @printf "should be:  0x%08x\n" 0x09de8d6d
22         ./$< tests/Fac | grep mainresult
23         @printf "should be:  0x%08x\n" 0x58980
24         ./$< tests/ArgumentPassing1 | grep mainresult
25         @printf "should be:  0x%08x\n" 0x92
26         @printf "should be:  0x%08x\n" $$(((0 - 0x1337) & 0xffffffff))
27         ./$< tests/DifferentClass1 | grep mainresult
28         @printf "should be:  0x%08x\n" 8
29         @printf "should be:  0x%08x\n" 13
30         ./$< tests/Native1 | egrep -i -e '^printsomething: '
31         ./$< tests/Static1 | grep mainresult
32         @printf "should be:  0x%08x\n" 0x33
33         ./$< tests/Static2 | grep mainresult
34         @printf "should be:  0x%08x\n" 0x55
35
36 %.class: %.java
37         $(JAVAC) $<
38
39 ffi/native.o: ffi/native.c
40         ghc -Wall -O2 -c $< -o $@
41
42 mate: Mate.hs ffi/trap.c $(HS_FILES) ffi/native.o
43         ghc --make $(GHC_OPT) Mate.hs ffi/trap.c -o $@ $(GHC_LD)
44
45 clean:
46         rm -f {Mate/,}*.hi {Mate/,ffi/,}*.o mate tests/*.class
47
48 ghci: mate
49         ghci $(PACKAGES) $(O_FILES) Mate.hs $(GHC_LD)
50
51 tags: mate
52         @# @-fforce-recomp, see
53         @# http://stackoverflow.com/questions/7137414/how-do-i-force-interpretation-in-hint
54         ghc -fforce-recomp -e :ctags $(PACKAGES) $(HS_FILES) $(O_FILES) Mate.hs