Files
clang-p2996/lldb/test/API/functionalities/json/symbol-file/Makefile
Jonas Devlieghere f40ed1f619 [lldb] Fix TestObjectFileJSON and TestSymbolFileJSON
- Separate the two test and only have TestSymbolFileJSON rely on strip.
 - Use different file names to make sure LLDB reloads the module.

This should address all the post commit review from D148062.
2023-04-17 12:01:24 -07:00

9 lines
114 B
Makefile

C_SOURCES := main.c
all: stripped.out
stripped.out : a.out
strip a.out -o stripped.out
include Makefile.rules