2 # common bits used by all libraries
5 SRC_DIR
= $(SRC_PATH
)/lib
$(NAME
)
8 SRCS
:= $(OBJS
:.o
=.c
) $(ASM_OBJS
:.o
=.S
) $(CPPOBJS
:.o
=.
cpp)
9 OBJS
:= $(OBJS
) $(ASM_OBJS
) $(CPPOBJS
)
10 STATIC_OBJS
:= $(OBJS
) $(STATIC_OBJS
)
11 SHARED_OBJS
:= $(OBJS
) $(SHARED_OBJS
)
13 all: $(EXTRADEPS
) $(LIB
) $(SLIBNAME
)
15 $(LIB
): $(STATIC_OBJS
)
17 $(AR
) rc
$@
$^
$(EXTRAOBJS
)
20 $(SLIBNAME
): $(SLIBNAME_WITH_MAJOR
)
23 $(SLIBNAME_WITH_MAJOR
): $(SHARED_OBJS
)
24 $(CC
) $(SHFLAGS
) $(LDFLAGS
) -o
$@
$^
$(EXTRALIBS
) $(EXTRAOBJS
)
28 $(CC
) $(CFLAGS
) $(LIBOBJFLAGS
) -c
-o
$@
$<
31 $(CC
) $(CFLAGS
) $(LIBOBJFLAGS
) -c
-o
$@
$<
33 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
35 g
++ $(subst -Wall
,,$(CFLAGS
)) -c
-o
$@
$<
38 $(CC
) -MM
$(CFLAGS
) $^
1>.depend
41 rm -f
*.o
*.d
*~
*.a
*.lib
*.so
*.so.
* *.dylib
*.dll \
42 *.lib
*.def
*.dll.a
*.exp
47 ifeq ($(BUILD_SHARED
),yes
)
48 INSTLIBTARGETS
+= install-lib-shared
50 ifeq ($(BUILD_STATIC
),yes
)
51 INSTLIBTARGETS
+= install-lib-static
54 install: install-libs install-headers
56 install-libs
: $(INSTLIBTARGETS
)
58 install-lib-shared
: $(SLIBNAME
)
59 install -d
"$(shlibdir)"
60 install $(INSTALLSTRIP
) -m
755 $(SLIBNAME
) \
61 "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
63 ln
-sf
$(SLIBNAME_WITH_VERSION
) $(SLIBNAME_WITH_MAJOR
)
65 ln
-sf
$(SLIBNAME_WITH_VERSION
) $(SLIBNAME
)
67 install-lib-static
: $(LIB
)
68 install -d
"$(libdir)"
69 install -m
644 $(LIB
) "$(libdir)"
70 $(LIB_INSTALL_EXTRA_CMD
)
73 install -d
"$(incdir)"
74 install -d
"$(libdir)/pkgconfig"
75 install -m
644 $(addprefix "$(SRC_DIR)"/,$(HEADERS
)) "$(incdir)"
76 install -m
644 $(BUILD_ROOT
)/lib
$(NAME
).
pc "$(libdir)/pkgconfig"
78 uninstall: uninstall-libs uninstall-headers
81 -rm -f
"$(shlibdir)/$(SLIBNAME_WITH_MAJOR)" \
82 "$(shlibdir)/$(SLIBNAME)" \
83 "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
84 -rm -f
"$(libdir)/$(LIB)"
87 rm -f
"$(addprefix $(incdir)/,$(HEADERS))"
88 rm -f
"$(libdir)/pkgconfig/lib$(NAME).pc"
90 .PHONY
: all depend dep
clean distclean install* uninstall*
93 # include dependency files if they exist
95 ifneq ($(wildcard .depend
),)