mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
18 lines
514 B
Makefile
18 lines
514 B
Makefile
|
##===- examples/TracingBrainF/Makefile ------------------- -*- Makefile -*-===##
|
||
|
#
|
||
|
# The LLVM Compiler Infrastructure
|
||
|
#
|
||
|
# This file is distributed under the University of Illinois Open Source
|
||
|
# License. See LICENSE.TXT for details.
|
||
|
#
|
||
|
##===----------------------------------------------------------------------===##
|
||
|
LEVEL = ../..
|
||
|
TOOLNAME = TracingBrainF
|
||
|
EXAMPLE_TOOL = 1
|
||
|
|
||
|
CXXFLAGS += -foptimize-sibling-calls
|
||
|
|
||
|
LINK_COMPONENTS := scalaropts jit nativecodegen
|
||
|
|
||
|
include $(LEVEL)/Makefile.common
|