| ##===- lib/ExecutionEngine/JIT/Makefile --------------------*- Makefile -*-===## |
| # The LLVM Compiler Infrastructure |
| # This file is distributed under the University of Illinois Open Source |
| # License. See LICENSE.TXT for details. |
| ##===----------------------------------------------------------------------===## |
| # Get the $(ARCH) setting |
| include $(LEVEL)/Makefile.config |
| # Enable the X86 JIT if compiling on X86 |
| # This flag can also be used on the command line to force inclusion |
| # of the X86 JIT on non-X86 hosts |
| CPPFLAGS += -DENABLE_X86_JIT |
| # Enable the Sparc JIT if compiling on Sparc |
| # This flag can also be used on the command line to force inclusion |
| # of the Sparc JIT on non-Sparc hosts |
| CPPFLAGS += -DENABLE_SPARC_JIT |
| include $(LEVEL)/Makefile.common |