mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 15:36:21 +00:00
10 lines
205 B
Makefile
10 lines
205 B
Makefile
|
.PHONY: all
|
||
|
all: toy
|
||
|
|
||
|
toy: toy.cpp
|
||
|
clang++ -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f toy
|