blob: dc42abb8ff45db24eec62f794c9fd5b4813d158c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#-------------------------------------------------------------------------
#
# postgres.lib.mk--
# rules for building libraries. To use the rules, set the following
# variables:
# LIBSRCS - source files for objects to be built in the library
# LIB - name of the library (eg. LIB=pq for libpq.a)
# postgres.mk should be included before this file.
#
# Copyright (c) 1994-5, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/mk/Attic/postgres.lib.mk,v 1.1.1.1 1996/07/09 06:22:19 scrappy Exp $
#
#-------------------------------------------------------------------------
LIBOBJS:= $(addsuffix .o, $(basename $(LIBSRCS)))
#LIBSOBJS:= $(addsuffix .so, $(basename $(LIBSRCS)))
lib:= lib$(LIB).a
shlib:= lib$(LIB).so.1
ifndef LINUX_ELF
$(lib): $(addprefix $(objdir)/,$(LIBOBJS))
else
$(lib): $(addprefix $(objdir)/,$(LIBOBJS))
endif
@rm -f $(objdir)/$(lib)
ifdef MK_NO_LORDER
cd $(objdir); $(AR) $(AROPT) $(lib) $(LIBOBJS); $(RANLIB) $(lib)
else
cd $(objdir); $(AR) $(AROPT) $(lib) `lorder $(LIBOBJS) | tsort`; $(RANLIB) $(lib)
endif
$(shlib): $(addprefix $(objdir)/,$(LIBOBJS))
@rm -f $(objdir)/$(shlib)
cd $(objdir); $(CC) -shared $(LIBOBJS) -o $(shlib)
CLEANFILES+= $(LIBOBJS) $(lib) $(shlib)
ifdef LINUX_ELF
install:: localobj $(lib) $(shlib)
$(INSTALL) $(INSTL_LIB_OPTS) $(objdir)/$(lib) $(DESTDIR)$(LIBDIR)/$(lib)
$(INSTALL) $(INSTL_LIB_OPTS) $(objdir)/$(shlib) $(DESTDIR)$(LIBDIR)/$(shlib)
else
install:: localobj $(lib)
$(INSTALL) $(INSTL_LIB_OPTS) $(objdir)/$(lib) $(DESTDIR)$(LIBDIR)/$(lib)
endif
# @cd $(DESTDIR)$(LIBDIR); $(RANLIB) $(lib)
|