Home | History | Annotate | Line # | Download | only in libclangInterpreter
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2021/05/30 01:56:57 joerg Exp $
      2 
      3 LIB=	clangInterpreter
      4 
      5 .include <bsd.init.mk>
      6 
      7 .PATH: ${CLANG_SRCDIR}/lib/Interpreter
      8 
      9 CPPFLAGS+=	-I${CLANG_SRCDIR}/lib/Interpreter
     10 
     11 SRCS+=	IncrementalExecutor.cpp \
     12 	IncrementalParser.cpp \
     13 	Interpreter.cpp
     14 
     15 .if defined(HOSTLIB)
     16 .include <bsd.hostlib.mk>
     17 .else
     18 .include <bsd.lib.mk>
     19 .endif
     20