1# $OpenBSD: Makefile,v 1.6 2024/02/08 20:28:54 miod 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 25CLEANFILES+= VCSVersion.inc 26 27VCSVersion.inc: 28 touch $@ 29 30install: 31 @# Nothing here so far ... 32 33.include <bsd.lib.mk> 34