diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/source-manager/Makefile')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/source-manager/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/source-manager/Makefile b/lldb/packages/Python/lldbsuite/test/source-manager/Makefile new file mode 100644 index 00000000000..a78dc11e071 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/source-manager/Makefile @@ -0,0 +1,11 @@ +C_SOURCES := main-copy.c + +include Makefile.rules + +# Copy file into the build folder to enable the test to modify it. +main-copy.c: main.c + cp -f $< $@ + + +clean:: + $(RM) main-copy.c |