forked from OSchip/llvm-project
22 lines
713 B
Makefile
22 lines
713 B
Makefile
##===- lld/lib/ReaderWriter/ELF/Makefile --------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LLD_LEVEL := ../../..
|
|
LIBRARYNAME := lldELF
|
|
USEDLIBS = lldHexagonELFTarget.a lldPPCELFTarget.a lldMipsELFTarget.a \
|
|
lldX86ELFTarget.a lldX86_64ELFTarget.a \
|
|
lldReaderWriter.a lldPasses.a
|
|
|
|
CPP.Flags += -I$(PROJ_SRC_DIR)/$(LLD_LEVEL)/lib/ReaderWriter/ELF
|
|
|
|
# these link against this lib
|
|
PARALLEL_DIRS := Hexagon PPC X86 X86_64 Mips
|
|
|
|
include $(LLD_LEVEL)/Makefile
|