common.mak 2.48 KB
Newer Older
1 2 3 4
#
# common bits used by all libraries
#

5 6
VPATH = $(SRC_PATH_BARE)/lib$(NAME)
SRC_DIR = "$(VPATH)"
7

8 9 10
CFLAGS += -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
          -D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) \
          -I$(SRC_PATH)/libavutil $(OPTFLAGS)
11
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
12 13 14 15
OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
STATIC_OBJS := $(OBJS) $(STATIC_OBJS)
SHARED_OBJS := $(OBJS) $(SHARED_OBJS)

16
all: $(EXTRADEPS) $(LIB) $(SLIBNAME)
17 18 19 20 21 22

$(LIB): $(STATIC_OBJS)
	rm -f $@
	$(AR) rc $@ $^ $(EXTRAOBJS)
	$(RANLIB) $@

23 24 25 26
$(SLIBNAME): $(SLIBNAME_WITH_MAJOR)
	ln -sf $^ $@

$(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
27
	$(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $^ $(EXTRALIBS) $(EXTRAOBJS)
28
	$(SLIB_EXTRA_CMD)
29 30 31 32 33 34 35 36 37 38 39

%.o: %.c
	$(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<

%.o: %.S
	$(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<

# BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
%.o: %.cpp
	g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<

40 41 42
%: %.o $(LIB)
	$(CC) $(LDFLAGS) -o $@ $^ $(EXTRALIBS)

43
depend dep: $(SRCS)
44 45 46
	$(CC) -MM $(CFLAGS) $^ 1>.depend

clean::
47
	rm -f *.o *.d *~ *.a *.lib *.so *.so.* *.dylib *.dll \
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
	      *.lib *.def *.dll.a *.exp

distclean: clean
	rm -f .depend

ifeq ($(BUILD_SHARED),yes)
INSTLIBTARGETS += install-lib-shared
endif
ifeq ($(BUILD_STATIC),yes)
INSTLIBTARGETS += install-lib-static
endif

install: install-libs install-headers

install-libs: $(INSTLIBTARGETS)

install-lib-shared: $(SLIBNAME)
65
	install -d "$(shlibdir)"
66
	install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
67
		"$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
68 69 70 71
	cd "$(shlibdir)" && \
		ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR)
	cd "$(shlibdir)" && \
		ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME)
72 73

install-lib-static: $(LIB)
74
	install -d "$(libdir)"
75
	install -m 644 $(LIB) "$(libdir)"
76
	$(LIB_INSTALL_EXTRA_CMD)
77 78

install-headers:
79 80
	install -d "$(incdir)"
	install -d "$(libdir)/pkgconfig"
81
	install -m 644 $(addprefix $(SRC_DIR)/,$(HEADERS)) "$(incdir)"
82 83
	install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(libdir)/pkgconfig"

Diego Biurrun's avatar
Diego Biurrun committed
84 85 86
uninstall: uninstall-libs uninstall-headers

uninstall-libs:
87 88 89 90
	-rm -f "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)" \
	       "$(shlibdir)/$(SLIBNAME)"            \
	       "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
	-rm -f "$(libdir)/$(LIB)"
Diego Biurrun's avatar
Diego Biurrun committed
91 92

uninstall-headers:
93
	rm -f $(addprefix "$(incdir)/",$(HEADERS))
94
	rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
Diego Biurrun's avatar
Diego Biurrun committed
95

96 97
.PHONY: all depend dep clean distclean install* uninstall*

98 99 100 101 102 103
#
# include dependency files if they exist
#
ifneq ($(wildcard .depend),)
include .depend
endif