VirtualBox

source: vbox/trunk/src/libs/ffmpeg-20060710/common.mak@ 9713

Last change on this file since 9713 was 5776, checked in by vboxsync, 17 years ago

ffmpeg: exported to OSE

File size: 2.3 KB
Line 
1#
2# common bits used by all libraries
3#
4
5SRC_DIR = $(SRC_PATH)/lib$(NAME)
6VPATH = $(SRC_DIR)
7
8SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
9OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
10STATIC_OBJS := $(OBJS) $(STATIC_OBJS)
11SHARED_OBJS := $(OBJS) $(SHARED_OBJS)
12
13all: $(EXTRADEPS) $(LIB) $(SLIBNAME)
14
15$(LIB): $(STATIC_OBJS)
16 rm -f $@
17 $(AR) rc $@ $^ $(EXTRAOBJS)
18 $(RANLIB) $@
19
20$(SLIBNAME): $(SLIBNAME_WITH_MAJOR)
21 ln -sf $^ $@
22
23$(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
24 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $^ $(EXTRALIBS) $(EXTRAOBJS)
25ifeq ($(CONFIG_WIN32),yes)
26 -lib /machine:i386 /def:$(@:.dll=.def)
27endif
28
29%.o: %.c
30 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
31
32%.o: %.S
33 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
34
35# BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
36%.o: %.cpp
37 g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
38
39depend: $(SRCS)
40 $(CC) -MM $(CFLAGS) $^ 1>.depend
41
42dep: depend
43
44clean::
45 rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll \
46 *.lib *.def *.dll.a *.exp
47
48distclean: clean
49 rm -f .depend
50
51ifeq ($(BUILD_SHARED),yes)
52INSTLIBTARGETS += install-lib-shared
53endif
54ifeq ($(BUILD_STATIC),yes)
55INSTLIBTARGETS += install-lib-static
56endif
57
58install: install-libs install-headers
59
60install-libs: $(INSTLIBTARGETS)
61
62install-lib-shared: $(SLIBNAME)
63 install -d "$(libdir)"
64ifeq ($(CONFIG_WIN32),yes)
65 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
66else
67 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
68 $(libdir)/$(SLIBNAME_WITH_VERSION)
69 ln -sf $(SLIBNAME_WITH_VERSION) \
70 $(libdir)/$(SLIBNAME_WITH_MAJOR)
71 ln -sf $(SLIBNAME_WITH_VERSION) \
72 $(libdir)/$(SLIBNAME)
73endif
74
75install-lib-static: $(LIB)
76 install -d "$(libdir)"
77 install -m 644 $(LIB) "$(libdir)"
78
79install-headers:
80 install -d "$(incdir)"
81 install -d "$(libdir)/pkgconfig"
82 install -m 644 $(addprefix "$(SRC_DIR)"/,$(HEADERS)) "$(incdir)"
83 install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(libdir)/pkgconfig"
84
85uninstall: uninstall-libs uninstall-headers
86
87uninstall-libs:
88ifeq ($(CONFIG_WIN32),yes)
89 -rm -f $(prefix)/$(SLIBNAME)
90else
91 -rm -f $(libdir)/$(SLIBNAME_WITH_MAJOR) \
92 $(libdir)/$(SLIBNAME) \
93 $(libdir)/$(SLIBNAME_WITH_VERSION)
94endif
95 -rm -f $(libdir)/$(LIB)
96
97uninstall-headers:
98 rm -f $(addprefix $(incdir)/,$(HEADERS))
99 rm -f $(libdir)/pkgconfig/lib$(NAME).pc
100
101#
102# include dependency files if they exist
103#
104ifneq ($(wildcard .depend),)
105include .depend
106endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette