29 lines
454 B
Makefile
29 lines
454 B
Makefile
|
# $NetBSD: Makefile,v 1.6 2013/09/02 14:34:56 joerg Exp $
|
||
|
|
||
|
LIB= clangDriver
|
||
|
|
||
|
.include <bsd.init.mk>
|
||
|
|
||
|
.PATH: ${CLANG_SRCDIR}/lib/Driver
|
||
|
|
||
|
SRCS+= Action.cpp \
|
||
|
CC1AsOptions.cpp \
|
||
|
Compilation.cpp \
|
||
|
Driver.cpp \
|
||
|
DriverOptions.cpp \
|
||
|
Job.cpp \
|
||
|
Phases.cpp \
|
||
|
SanitizerArgs.cpp \
|
||
|
Tool.cpp \
|
||
|
ToolChain.cpp \
|
||
|
ToolChains.cpp \
|
||
|
Tools.cpp \
|
||
|
Types.cpp \
|
||
|
WindowsToolChain.cpp
|
||
|
|
||
|
.if defined(HOSTLIB)
|
||
|
.include <bsd.hostlib.mk>
|
||
|
.else
|
||
|
.include <bsd.lib.mk>
|
||
|
.endif
|