xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/missing-module-sources/Makefile (revision 99b7b41edf4fbc2d6e52bc4524c956e8f69042d9)
1*99b7b41eSRaphael Isemann# We don't have any standard include directories, so we can't
2*99b7b41eSRaphael Isemann# parse the test_common.h header we usually inject as it includes
3*99b7b41eSRaphael Isemann# system headers.
4*99b7b41eSRaphael IsemannNO_TEST_COMMON_H := 1
5*99b7b41eSRaphael Isemann
6*99b7b41eSRaphael Isemann# Take the libc++ from the build directory (which will be later deleted).
7*99b7b41eSRaphael IsemannCXXFLAGS_EXTRAS = -I $(BUILDDIR)/root/usr/include/c++/v1/ -I $(BUILDDIR)/root/usr/include/ -nostdinc -nostdinc++
8*99b7b41eSRaphael IsemannCXX_SOURCES := main.cpp
9*99b7b41eSRaphael Isemann
10*99b7b41eSRaphael Isemanninclude Makefile.rules
11