Mercurial > mplayer.hg
annotate common.mak @ 26309:5a27681fb896
According to the Icon Theme Specification icon names should have no extension.
Compare the output of new versions of desktop-file-validate.
pointed out by giggz, giggzounet gmail com, in Debian bug #472833.
author | diego |
---|---|
date | Mon, 07 Apr 2008 07:46:32 +0000 |
parents | 84e71e0a0546 |
children | a80f0a7d73f4 |
rev | line source |
---|---|
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
1 # |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
2 # common bits used by all libraries |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
3 # |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
4 |
26246 | 5 SRC_DIR = $(SRC_PATH_BARE)/lib$(NAME) |
26155 | 6 |
26185 | 7 LIBVERSION = $(lib$(NAME)_VERSION) |
8 LIBMAJOR = $(lib$(NAME)_VERSION_MAJOR) | |
9 | |
26246 | 10 vpath %.c $(SRC_DIR) |
11 vpath %.h $(SRC_DIR) | |
12 vpath %.S $(SRC_DIR) | |
26155 | 13 |
14 ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale | |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
15 |
21992 | 16 CFLAGS += $(CFLAGS-yes) |
17 OBJS += $(OBJS-yes) | |
18 ASM_OBJS += $(ASM_OBJS-yes) | |
23524 | 19 CPP_OBJS += $(CPP_OBJS-yes) |
26155 | 20 FFLIBS += $(FFLIBS-yes) |
21992 | 21 |
20152 | 22 CFLAGS += -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ |
23 -D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) \ | |
26155 | 24 $(addprefix -I$(SRC_PATH)/lib,$(ALLFFLIBS)) $(OPTFLAGS) |
25 | |
26 EXTRALIBS := $(addprefix -l,$(addsuffix $(BUILDSUF),$(FFLIBS))) $(EXTRALIBS) | |
27 LDFLAGS := $(addprefix -L$(BUILD_ROOT)/lib,$(FFLIBS)) $(LDFLAGS) | |
23524 | 28 |
17700
a0c511c2d0bd
update config.mak to match ffmpeg's version (fix alpha compilation)
aurel
parents:
17627
diff
changeset
|
29 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) $(CPPOBJS:.o=.cpp) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
30 OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS) |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
31 |
24775 | 32 all: $(LIBNAME) $(SLIBNAME) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
33 |
24858 | 34 $(LIBNAME): $(OBJS) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
35 rm -f $@ |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
36 $(AR) rc $@ $^ $(EXTRAOBJS) |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
37 $(RANLIB) $@ |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
38 |
19016 | 39 $(SLIBNAME): $(SLIBNAME_WITH_MAJOR) |
24775 | 40 $(LN_S) $^ $@ |
19016 | 41 |
24858 | 42 $(SLIBNAME_WITH_MAJOR): $(OBJS) |
26155 | 43 $(SLIB_CREATE_DEF_CMD) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
44 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $^ $(EXTRALIBS) $(EXTRAOBJS) |
19375 | 45 $(SLIB_EXTRA_CMD) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
46 |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
47 %.o: %.c |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
48 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
49 |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
50 %.o: %.S |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
51 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
52 |
24775 | 53 %: %.o $(LIBNAME) |
20068 | 54 $(CC) $(LDFLAGS) -o $@ $^ $(EXTRALIBS) |
55 | |
24775 | 56 %.ho: %.h |
57 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -Wno-unused -c -o $@ -x c $< | |
58 | |
26246 | 59 ALLHEADERS = $(subst $(SRC_DIR)/,,$(wildcard $(SRC_DIR)/*.h)) |
24775 | 60 checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho)) |
61 | |
26246 | 62 depend dep: .depend |
63 | |
64 .depend: $(SRCS) | |
65 $(DEPEND_CMD) > .depend | |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
66 |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
67 clean:: |
23524 | 68 rm -f *.o *~ *.a *.lib *.so *.so.* *.dylib *.dll \ |
26155 | 69 *.def *.dll.a *.exp *.ho *.map $(TESTS) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
70 |
26246 | 71 distclean:: clean |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
72 rm -f .depend |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
73 |
24858 | 74 INSTALL_TARGETS-$(BUILD_SHARED) += install-lib-shared |
75 INSTALL_TARGETS-$(BUILD_STATIC) += install-lib-static | |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
76 |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
77 install: install-libs install-headers |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
78 |
24858 | 79 install-libs: $(INSTALL_TARGETS-yes) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
80 |
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
81 install-lib-shared: $(SLIBNAME) |
24775 | 82 install -d "$(SHLIBDIR)" |
83 install -m 755 $(SLIBNAME) "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)" | |
84 $(STRIP) "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)" | |
85 cd "$(SHLIBDIR)" && \ | |
86 $(LN_S) $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR) | |
87 cd "$(SHLIBDIR)" && \ | |
88 $(LN_S) $(SLIBNAME_WITH_VERSION) $(SLIBNAME) | |
21975 | 89 $(SLIB_INSTALL_EXTRA_CMD) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
90 |
24775 | 91 install-lib-static: $(LIBNAME) |
92 install -d "$(LIBDIR)" | |
93 install -m 644 $(LIBNAME) "$(LIBDIR)" | |
20016 | 94 $(LIB_INSTALL_EXTRA_CMD) |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
95 |
26155 | 96 INCINSTDIR = $(INCDIR)/lib$(NAME) |
97 | |
26246 | 98 install-headers:: |
26155 | 99 install -d "$(INCINSTDIR)" |
24775 | 100 install -d "$(LIBDIR)/pkgconfig" |
26246 | 101 install -m 644 $(addprefix "$(SRC_DIR)"/,$(HEADERS)) "$(INCINSTDIR)" |
24775 | 102 install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(LIBDIR)/pkgconfig" |
17627
24238abbd150
Import common.mak v1.1 from ffmpeg cvs, now it's needed by the building
rtognimp
parents:
diff
changeset
|
103 |
19016 | 104 uninstall: uninstall-libs uninstall-headers |
105 | |
26246 | 106 uninstall-libs:: |
24775 | 107 -rm -f "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR)" \ |
108 "$(SHLIBDIR)/$(SLIBNAME)" \ | |
109 "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)" | |
110 -$(SLIB_UNINSTALL_EXTRA_CMD) | |
111 -rm -f "$(LIBDIR)/$(LIBNAME)" | |
19016 | 112 |
23524 | 113 uninstall-headers:: |
26155 | 114 rm -f $(addprefix "$(INCINSTDIR)/",$(HEADERS)) |
24775 | 115 rm -f "$(LIBDIR)/pkgconfig/lib$(NAME).pc" |
19016 | 116 |
26155 | 117 tests: $(TESTS) |
118 | |
119 %-test$(EXESUF): %.c $(LIBNAME) | |
120 $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) | |
121 | |
122 .PHONY: all depend dep clean distclean install* uninstall* tests | |
20016 | 123 |
23524 | 124 -include .depend |