1# $OpenBSD: Makefile,v 1.6 2021/04/28 12:55:40 patrick Exp $ 2 3LIB= LLVMTableGen 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/TableGen 8 9.include <bsd.own.mk> 10SRCS= TableGenError.cpp \ 11 JSONBackend.cpp \ 12 Main.cpp \ 13 Record.cpp \ 14 SetTheory.cpp \ 15 StringMatcher.cpp \ 16 TableGenBackend.cpp \ 17 TGLexer.cpp \ 18 TGParser.cpp 19 20TableGenError.cpp: 21 ln -s ${LLVM_SRCS}/lib/TableGen/Error.cpp $@ 22 23.PATH: ${.CURDIR}/../../../llvm/llvm/lib/TableGen 24 25install: 26 @# Nothing here so far ... 27 28CLEANFILES+= TableGenError.cpp 29 30.include <bsd.lib.mk> 31