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= CommandOptions.inc 8 9all: ${DEFS} 10 11install: 12 @# Nothing here so far ... 13 14clean cleandir: 15 rm -f ${DEFS} 16 17CommandOptions.inc: ${LLDB_SRCS}/source/Commands/Options.td 18 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-option-defs \ 19 -I${LLDB_SRCS}/source/Commands \ 20 -o ${.TARGET} ${.ALLSRC} 21 22.include <bsd.obj.mk> 23