]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/expression_command/call-function/Makefile
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / expression_command / call-function / Makefile
1 LEVEL = ../../make
2
3 CXX_SOURCES := main.cpp
4
5 # clang-3.5+ outputs FullDebugInfo by default for Darwin/FreeBSD
6 # targets.  Other targets do not, which causes this test to fail.
7 # This flag enables FullDebugInfo for all targets.
8 ifneq (,$(findstring clang,$(CC)))
9   CFLAGS_EXTRAS += -fno-limit-debug-info
10 endif
11
12 include $(LEVEL)/Makefile.rules
13
14 clean::
15         rm -rf $(wildcard *.o *.d *.dSYM)