Files
llvm/lldb/test/API/python_api/sbmodule/Makefile
barsolo2000 402109e1c4 [LLDB] added getName method in SBModule (#150331)
added getName method in SBModule.h and .cpp in order to get the name of
the module from m_object_name.

---------

Co-authored-by: Bar Soloveychik <barsolo@fb.com>
2025-08-19 14:24:10 -07:00

13 lines
175 B
Makefile

C_SOURCES := main.c a.c b.c
MAKE_DSYM := NO
all: a.out
a.out: main.o libfoo.a
$(LD) $(LDFLAGS) $^ -o $@
libfoo.a: a.o b.o
$(AR) $(ARFLAGS) $@ $^
include Makefile.rules