1# $OpenBSD: Makefile,v 1.5 2023/11/11 18:35:39 robert Exp $ 2 3LIB= lldCommon 4NOPROFILE= 5 6CPPFLAGS+= -I${LLD_SRCS}/include 7 8.include <bsd.own.mk> 9 10SRCS= Args.cpp \ 11 CommonLinkerContext.cpp \ 12 DWARF.cpp \ 13 ErrorHandler.cpp \ 14 Filesystem.cpp \ 15 Memory.cpp \ 16 Reproduce.cpp \ 17 Strings.cpp \ 18 TargetOptionsCommandFlags.cpp \ 19 Timer.cpp \ 20 Version.cpp 21 22.PATH: ${.CURDIR}/../../../llvm/lld/Common 23 24BUILDFIRST= VCSVersion.inc 25 26VCSVersion.inc: 27 touch $@ 28 29install: 30 @# Nothing here so far ... 31 32.include <bsd.lib.mk> 33