diff options
Diffstat (limited to 'ortho/llvm/Makefile')
-rw-r--r-- | ortho/llvm/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ortho/llvm/Makefile b/ortho/llvm/Makefile new file mode 100644 index 0000000..b5c2798 --- /dev/null +++ b/ortho/llvm/Makefile @@ -0,0 +1,29 @@ +ortho_srcdir=.. +GNAT_FLAGS=-gnaty3befhkmr -gnata -gnatf -gnatwael +CC=clang +LLVM_CONFIG=llvm-config + +all: $(ortho_exec) + +$(ortho_exec): force llvm-cbindings.o + gnatmake -m -o $@ -g -aI$(ortho_srcdir)/llvm -aI$(ortho_srcdir) \ + $(GNAT_FLAGS) ortho_code_main -bargs -E \ + -largs llvm-cbindings.o `$(LLVM_CONFIG) --ldflags --libs --system-libs` -lc++ #-static + +llvm-bindings.o: $(ortho_srcdir)/llvm/llvm-bindings.cpp + $(CXX) -c -m64 -I`$(LLVM_CONFIG) --includedir --cxxflags` -g -o $@ $< + +llvm-cbindings.o: $(ortho_srcdir)/llvm/llvm-cbindings.cpp + $(CC) -c -I`$(LLVM_CONFIG) --includedir --cflags` -g -o $@ $< + +clean: + $(RM) -f *.o *.ali ortho_code_main + $(RM) b~*.ad? *~ + +distclean: clean + + +force: + +.PHONY: force all clean + |