1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/devel/libdlmalloc/files/Makefile
Ollivier Robert 4bc7f4c01a Update to 2.6.5.
Prompted by:	Pavel Narozhniy <pasha@sim.net.ua>
1999-04-04 15:16:26 +00:00

69 lines
1.3 KiB
Makefile

# 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.6.5
#
# working version; unreleased.
#
LIBDIR=${PREFIX}/lib
# for the shared lib stuff
.if ${PORTOBJFORMAT} == "elf"
VERSION=2
.else
VERSION=2.6
.endif
LIBMALLOC=libdlmalloc.a
LIBSMALLOC=libdlmalloc.so.${VERSION}
SRCS = malloc-2.6.5.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)
.if ${PORTOBJFORMAT} == "elf"
ld -Bshareable -soname $(LIBSMALLOC) -o $(LIBSMALLOC) $(SOBJS)
.else
ld -Bshareable -o $(LIBSMALLOC) $(SOBJS)
.endif
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)
ln -sf ${LIBSMALLOC} $(LIBDIR)/libdlmalloc.so
$(OBJS): $(SRCS)
$(SOBJS): $(SRCS)