mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
5 lines
148 B
Makefile
5 lines
148 B
Makefile
|
all: toy
|
||
|
|
||
|
toy : toy.cpp
|
||
|
clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core jit mcjit native irreader` -o toy
|