tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / llvm / lib / liblldDriver / Makefile
blobb21d79c2575fed7d71d9873ff3faca0e3fcdfa89
1 # $NetBSD: Makefile,v 1.4 2013/11/28 14:20:00 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 GnuLdDriver.cpp \
13 UniversalDriver.cpp \
14 WinLinkDriver.cpp
16 TABLEGEN_SRC= CoreOptions.td DarwinLdOptions.td GnuLdOptions.td \
17 UniversalDriverOptions.td WinLinkOptions.td
19 TABLEGEN_OUTPUT.UniversalDriverOptions.td= \
20 UniversalDriverOptions.inc|-gen-opt-parser-defs
21 TABLEGEN_OUTPUT.CoreOptions.td= \
22 CoreOptions.inc|-gen-opt-parser-defs
23 TABLEGEN_OUTPUT.DarwinLdOptions.td= \
24 DarwinLdOptions.inc|-gen-opt-parser-defs
25 TABLEGEN_OUTPUT.GnuLdOptions.td= \
26 GnuLdOptions.inc|-gen-opt-parser-defs
27 TABLEGEN_OUTPUT.WinLinkOptions.td= \
28 WinLinkOptions.inc|-gen-opt-parser-defs
30 .include "${.PARSEDIR}/../../tablegen.mk"
32 .if defined(HOSTLIB)
33 .include <bsd.hostlib.mk>
34 .else
35 .include <bsd.lib.mk>
36 .endif