blob: 970591b2e58c2b80b4b04b262c8a5045e334d719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
TARGETS = shmem.lo build-mm
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
INCDIR=../../include
INCDIR1=mm
INCLUDES=-I$(INCDIR) -I$(INCDIR1)
x-local-clean:
(cd mm && $(MAKE) clean)
x-local-distclean:
(cd mm && $(MAKE) distclean)
# build the MM library, then copy the objects to this dir so our top-level
# will find them and copy them to the (top)/objs directory
MM_OBJS = \
mm/mm_global.lo mm/mm_alloc.lo mm/mm_core.lo mm/mm_lib.lo \
mm/mm_vers.lo
build-mm:
(cd mm && $(MAKE) libmm.la)
cp $(MM_OBJS) .
# DO NOT REMOVE
|