blob: c612752a5947569d595e642c6d544119a41a9473 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Makefile for Doug Lea's malloc
#
# (largely based on Mark Moreas' Makefile)
#
# Renamed dlmalloc
#
# A version of malloc/free/realloc written by Doug Lea and released to the
# public domain.
#
# preliminary VERSION 2.5.3b
#
# working version; unreleased.
#
LIBDIR=${PREFIX}/lib
# for the shared lib stuff
VERSION=2.6
LIBMALLOC=libdlmalloc.a
LIBSMALLOC=libdlmalloc.so.${VERSION}
SRCS = malloc-2.6.4.c
OBJS = $(SRCS:.c=.o)
SOBJS = $(SRCS:.c=.so)
.SUFFIXES:
.SUFFIXES: .out .o .po .so .s .S .c .cc .cxx .m .C .f .y .l
.c.o:
${CC} -c ${CFLAGS} $< -o $@
.c.so:
${CC} -c -fpic ${CFLAGS} $< -o $@
ld -x -r $@
mv a.out $@
all: ${LIBMALLOC} ${LIBSMALLOC}
$(LIBMALLOC): $(OBJS)
rm -f $(LIBMALLOC)
$(AR) $(ARFLAGS) $(LIBMALLOC) $(OBJS)
-$(RANLIB) $(LIBMALLOC)
$(LIBSMALLOC): $(SOBJS)
rm -f $(LIBSMALLOC)
ld -Bshareable -o $(LIBSMALLOC) $(SOBJS)
clean:
-rm -f *.o \#* *~ *.core a.out gmon.out mon.out onefile.c *.sL prof.out
install:
install -c -m 644 ${LIBMALLOC} $(LIBDIR)
-$(RANLIB) $(LIBDIR)/${LIBMALLOC}
install -c -m 555 ${LIBSMALLOC} $(LIBDIR)
$(OBJS): $(SRCS)
$(SOBJS): $(SRCS)
|