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