This is the conclusion of an effort to get LLDB's Python code structured into a bona-fide Python package. This has a number of benefits, but most notably the ability to more easily share Python code between different but related pieces of LLDB's Python infrastructure (for example, `scripts` can now share code with `test`). llvm-svn: 251532
25 lines
379 B
Makefile
25 lines
379 B
Makefile
LEVEL := ../../make
|
|
|
|
LIB_PREFIX := loadunload_
|
|
|
|
LD_EXTRAS := -L. -l$(LIB_PREFIX)d -ldl
|
|
C_SOURCES := main.c
|
|
|
|
include $(LEVEL)/Makefile.rules
|
|
|
|
.PHONY:
|
|
a.out: lib_a lib_b lib_c lib_d hidden_lib_d
|
|
|
|
lib_%:
|
|
$(MAKE) -f $*.mk
|
|
|
|
hidden_lib_d:
|
|
$(MAKE) -C hidden
|
|
|
|
clean::
|
|
$(MAKE) -f a.mk clean
|
|
$(MAKE) -f b.mk clean
|
|
$(MAKE) -f c.mk clean
|
|
$(MAKE) -f d.mk clean
|
|
$(MAKE) -C hidden clean
|