1# $OpenBSD: Makefile,v 1.1 2020/08/03 14:45:22 patrick Exp $ 2 3.include <bsd.own.mk> 4 5LLDB_SRCS= ${.CURDIR}/../../../../../llvm/lldb 6 7DEFS= CoreProperties.inc CorePropertiesEnum.inc 8 9all: ${DEFS} 10 11install: 12 @# Nothing here so far ... 13 14clean cleandir: 15 rm -f ${DEFS} 16 17CoreProperties.inc: ${LLDB_SRCS}/source/Core/CoreProperties.td 18 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-defs \ 19 -I${LLDB_SRCS}/source/Core \ 20 -o ${.TARGET} ${.ALLSRC} 21 22CorePropertiesEnum.inc: ${LLDB_SRCS}/source/Core/CoreProperties.td 23 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \ 24 -I${LLDB_SRCS}/source/Core \ 25 -o ${.TARGET} ${.ALLSRC} 26 27.include <bsd.obj.mk> 28