~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/common.mak

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc, Andrew Starr-Bochicchio, Lionel Le Folgoc
  • Date: 2008-12-26 00:10:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081226001006-2040ls9680bd1blt
Tags: 1.1.7-0.2ubuntu1
[ Andrew Starr-Bochicchio ]
* Merge from debian-multimedia (LP: #298547), Ubuntu Changes:
 - For ffmpeg-related build-deps, fix versionized dependencies
   as the ubuntu versioning is different than debian-multimedia's.

[ Lionel Le Folgoc ]
* LP: #311412 is fixed since the 1.1.7~rc1-0.1 revision.
* debian/patches/03_ffmpeg.diff: updated to fix FTBFS due to libswscale API
  change (cherry-pick from Gentoo #234383).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# common bits used by all libraries
3
3
#
4
4
 
5
 
VPATH = $(SRC_PATH_BARE)/lib$(NAME)
6
 
SRC_DIR = "$(VPATH)"
 
5
all: # make "all" default target
 
6
 
 
7
ifndef SUBDIR
 
8
vpath %.c $(SRC_DIR)
 
9
vpath %.h $(SRC_DIR)
 
10
vpath %.S $(SRC_DIR)
 
11
 
 
12
ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale
 
13
 
 
14
CFLAGS = -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
 
15
         -D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) \
 
16
         $(addprefix -I$(SRC_PATH)/lib,$(ALLFFLIBS)) $(OPTFLAGS)
 
17
 
 
18
%.o: %.c
 
19
        $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
 
20
 
 
21
%.o: %.S
 
22
        $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
 
23
 
 
24
%.ho: %.h
 
25
        $(CC) $(CFLAGS) $(LIBOBJFLAGS) -Wno-unused -c -o $@ -x c $<
 
26
 
 
27
%.d: %.c
 
28
        $(DEPEND_CMD) > $@
 
29
 
 
30
%.d: %.S
 
31
        $(DEPEND_CMD) > $@
 
32
 
 
33
%.d: %.cpp
 
34
        $(DEPEND_CMD) > $@
 
35
 
 
36
%$(EXESUF): %.c
 
37
 
 
38
install: install-libs install-headers
 
39
 
 
40
uninstall: uninstall-libs uninstall-headers
 
41
 
 
42
.PHONY: all depend dep clean distclean install* uninstall* tests
 
43
endif
7
44
 
8
45
CFLAGS   += $(CFLAGS-yes)
9
46
OBJS     += $(OBJS-yes)
10
47
ASM_OBJS += $(ASM_OBJS-yes)
11
 
 
12
 
CFLAGS += -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
13
 
          -D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) \
14
 
          -I$(SRC_PATH)/libavutil $(OPTFLAGS)
15
 
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp)
16
 
OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
17
 
STATIC_OBJS := $(OBJS) $(STATIC_OBJS)
18
 
SHARED_OBJS := $(OBJS) $(SHARED_OBJS)
19
 
 
20
 
all: $(EXTRADEPS) $(LIB) $(SLIBNAME)
21
 
 
22
 
$(LIB): $(STATIC_OBJS)
23
 
        rm -f $@
24
 
        $(AR) rc $@ $^ $(EXTRAOBJS)
25
 
        $(RANLIB) $@
26
 
 
27
 
$(SLIBNAME): $(SLIBNAME_WITH_MAJOR)
28
 
        ln -sf $^ $@
29
 
 
30
 
$(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
31
 
        $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $^ $(EXTRALIBS) $(EXTRAOBJS)
32
 
        $(SLIB_EXTRA_CMD)
33
 
 
34
 
%.o: %.c
35
 
        $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
36
 
 
37
 
%.o: %.S
38
 
        $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
39
 
 
40
 
%: %.o $(LIB)
41
 
        $(CC) $(LDFLAGS) -o $@ $^ $(EXTRALIBS)
42
 
 
43
 
depend dep: $(SRCS)
44
 
        $(CC) -MM $(CFLAGS) $^ 1>.depend
 
48
CPP_OBJS += $(CPP_OBJS-yes)
 
49
FFLIBS   := $(FFLIBS-yes) $(FFLIBS)
 
50
TESTS    += $(TESTS-yes)
 
51
 
 
52
FFEXTRALIBS := $(addprefix -l,$(addsuffix $(BUILDSUF),$(FFLIBS))) $(EXTRALIBS)
 
53
FFLDFLAGS   := $(addprefix -L$(BUILD_ROOT)/lib,$(FFLIBS)) $(LDFLAGS)
 
54
 
 
55
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPP_OBJS:.o=.cpp)
 
56
OBJS := $(OBJS) $(ASM_OBJS) $(CPP_OBJS)
 
57
 
 
58
SRCS  := $(addprefix $(SUBDIR),$(SRCS))
 
59
OBJS  := $(addprefix $(SUBDIR),$(OBJS))
 
60
TESTS := $(addprefix $(SUBDIR),$(TESTS))
 
61
 
 
62
DEP_LIBS:=$(foreach NAME,$(FFLIBS),lib$(NAME)/$($(BUILD_SHARED:yes=S)LIBNAME))
 
63
 
 
64
ALLHEADERS := $(subst $(SRC_DIR)/,$(SUBDIR),$(wildcard $(SRC_DIR)/*.h))
 
65
checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho))
 
66
 
 
67
DEPS := $(OBJS:.o=.d)
 
68
depend dep: $(DEPS)
 
69
 
 
70
CLEANSUFFIXES = *.o *~ *.ho
 
71
LIBSUFFIXES   = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp *.map
 
72
DISTCLEANSUFFIXES = *.d
 
73
 
 
74
define RULES
 
75
$(SUBDIR)%$(EXESUF): $(SUBDIR)%.o
 
76
        $(CC) $(FFLDFLAGS) -o $$@ $$^ $(SUBDIR)$(LIBNAME) $(FFEXTRALIBS)
 
77
 
 
78
$(SUBDIR)%-test.o: $(SUBDIR)%.c
 
79
        $(CC) $(CFLAGS) -DTEST -c -o $$@ $$^
 
80
 
 
81
$(SUBDIR)%-test.o: $(SUBDIR)%-test.c
 
82
        $(CC) $(CFLAGS) -DTEST -c -o $$@ $$^
45
83
 
46
84
clean::
47
 
        rm -f *.o *.d *~ *.a *.lib *.so *.so.* *.dylib *.dll \
48
 
              *.def *.dll.a *.exp
49
 
 
50
 
distclean: clean
51
 
        rm -f .depend
52
 
 
53
 
ifeq ($(BUILD_SHARED),yes)
54
 
INSTLIBTARGETS += install-lib-shared
55
 
endif
56
 
ifeq ($(BUILD_STATIC),yes)
57
 
INSTLIBTARGETS += install-lib-static
58
 
endif
59
 
 
60
 
install: install-libs install-headers
61
 
 
62
 
install-libs: $(INSTLIBTARGETS)
63
 
 
64
 
install-lib-shared: $(SLIBNAME)
65
 
        install -d "$(shlibdir)"
66
 
        install -m 755 $(SLIBNAME) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
67
 
        $(STRIP) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
68
 
        cd "$(shlibdir)" && \
69
 
                ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR)
70
 
        cd "$(shlibdir)" && \
71
 
                ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME)
72
 
        $(SLIB_INSTALL_EXTRA_CMD)
73
 
 
74
 
install-lib-static: $(LIB)
75
 
        install -d "$(libdir)"
76
 
        install -m 644 $(LIB) "$(libdir)"
77
 
        $(LIB_INSTALL_EXTRA_CMD)
78
 
 
79
 
install-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
 
 
85
 
uninstall: uninstall-libs uninstall-headers
86
 
 
87
 
uninstall-libs:
88
 
        -rm -f "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)" \
89
 
               "$(shlibdir)/$(SLIBNAME)"            \
90
 
               "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
91
 
        -rm -f "$(libdir)/$(LIB)"
92
 
 
93
 
uninstall-headers:
94
 
        rm -f $(addprefix "$(incdir)/",$(HEADERS))
95
 
        rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
96
 
 
97
 
.PHONY: all depend dep clean distclean install* uninstall*
98
 
 
99
 
-include .depend
 
85
        rm -f $(TESTS) $(addprefix $(SUBDIR),$(CLEANFILES) $(CLEANSUFFIXES) $(LIBSUFFIXES)) \
 
86
            $(addprefix $(SUBDIR), $(foreach suffix,$(CLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS))))
 
87
 
 
88
distclean:: clean
 
89
        rm -f  $(addprefix $(SUBDIR),$(DISTCLEANSUFFIXES)) \
 
90
            $(addprefix $(SUBDIR), $(foreach suffix,$(DISTCLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS))))
 
91
endef
 
92
 
 
93
$(eval $(RULES))
 
94
 
 
95
tests: $(TESTS)
 
96
 
 
97
-include $(DEPS)