summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
blob: a5c37561daa6d44d34f321b9a7ee06b1742108af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
LEVEL := ../../make

LIB_PREFIX := loadunload_

CFLAGS_EXTRAS := -fPIC
LD_EXTRAS := -L. -l$(LIB_PREFIX)b

DYLIB_NAME := $(LIB_PREFIX)a
DYLIB_C_SOURCES := a.c
DYLIB_ONLY := YES

include $(LEVEL)/Makefile.rules

.PHONY:
$(DYLIB_FILENAME): lib_b

lib_b:
	$(MAKE) -f b.mk

clean::
	$(MAKE) -f b.mk clean
OpenPOWER on IntegriCloud