mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228531 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
211 B
Makefile
10 lines
211 B
Makefile
.PHONY: all
|
|
all: toy
|
|
|
|
toy: toy.cpp
|
|
clang++ -Wall -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
|