Remove building with NOCRYPTO option
[minix3.git] / external / bsd / llvm / lib / liblldDriver / Makefile
blob9521203bb3881f95f2808e5c6a6dd2e0602c5270
1 # $NetBSD: Makefile,v 1.7 2015/01/29 20:41:37 joerg Exp $
3 LIB= lldDriver
5 .include <bsd.init.mk>
7 .PATH: ${LLD_SRCDIR}/lib/Driver
9 SRCS+= CoreDriver.cpp \
10 DarwinLdDriver.cpp \
11 Driver.cpp \
12 DarwinInputGraph.cpp \
13 GnuLdDriver.cpp \
14 GnuLdInputGraph.cpp \
15 UniversalDriver.cpp \
16 WinLinkDriver.cpp \
17 WinLinkInputGraph.cpp \
18 WinLinkModuleDef.cpp
20 TABLEGEN_SRC= CoreOptions.td DarwinLdOptions.td GnuLdOptions.td \
21 UniversalDriverOptions.td WinLinkOptions.td
23 TABLEGEN_OUTPUT.UniversalDriverOptions.td= \
24 UniversalDriverOptions.inc|-gen-opt-parser-defs
25 TABLEGEN_OUTPUT.CoreOptions.td= \
26 CoreOptions.inc|-gen-opt-parser-defs
27 TABLEGEN_OUTPUT.DarwinLdOptions.td= \
28 DarwinLdOptions.inc|-gen-opt-parser-defs
29 TABLEGEN_OUTPUT.GnuLdOptions.td= \
30 GnuLdOptions.inc|-gen-opt-parser-defs
31 TABLEGEN_OUTPUT.WinLinkOptions.td= \
32 WinLinkOptions.inc|-gen-opt-parser-defs
34 .include "${.PARSEDIR}/../../tablegen.mk"
36 .if defined(HOSTLIB)
37 .include <bsd.hostlib.mk>
38 .else
39 .include <bsd.lib.mk>
40 .endif