File: Makefile.lib.in

package info (click to toggle)
jade 1.2.1-47
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 8,804 kB
  • ctags: 16,991
  • sloc: cpp: 120,658; sh: 10,522; ansic: 8,228; perl: 378; makefile: 292; sed: 5
file content (30 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (5)
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
#
#  Makefile.lib.in - Makerules for building libraries
#
#  $Id: Makefile.lib.in 1.3 1998/10/11 11:07:03 jjc Exp $
#
#  Copyright (C) 1998 Cees A. de Groot
#
LTVERSION=@LTVERSION@

CLEANFILES=-r lib$(LIB).la $(OBJS) $(COBJS) $(LT_OBJS) core .libs Makefile.lt

LIB_THREADS=@LIB_THREADS@

all: lib$(LIB).la
pure: all

Makefile.lt:
	echo 'LT_OBJS='`echo $(OBJS)|sed 's/\.o/.lo/g'` >Makefile.lt

lib$(LIB).la: $(LT_OBJS)
	$(LIBTOOL) --mode=link $(CC) -o lib$(LIB).la $(LT_OBJS) \
	    -rpath $(libdir) -version-info $(LTVERSION) $(DEPLIBS)

install:
	$(LIBTOOL) --mode=install $(INSTALL) lib$(LIB).la $(libdir)

install-man:
depend: depend_src
depend.temp: $(GENSRCS)
gen: $(GENSRCS)