depot/third_party/tvl/users/grfn/achilles/ach/Makefile

16 lines
188 B
Makefile
Raw Normal View History

default: simple
%.ll: %.ach
cargo run -- compile $< -o $@ -f llvm
%.o: %.ll
llc $< -o $@ -filetype=obj
%: %.o
clang $< -o $@
.PHONY: clean
clean:
@rm -f *.ll *.o simple functions