mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
20 lines
549 B
Makefile
20 lines
549 B
Makefile
|
##===- tools/llvmc2/src/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 = $(DRIVER_NAME)
|
||
|
LINK_COMPONENTS = support system
|
||
|
REQUIRES_EH := 1
|
||
|
|
||
|
ifneq ($(BUILTIN_PLUGINS),)
|
||
|
USEDLIBS = $(patsubst %,LLVMC%,$(BUILTIN_PLUGINS))
|
||
|
endif
|
||
|
|
||
|
include $(LEVEL)/Makefile.common
|