~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/control/corba/Makefile.am

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Autogenerated by bootstrap - DO NOT EDIT - edit Modules.am instead
 
3
 
 
4
NULL =
 
5
libvlc_LIBRARIES =
 
6
noinst_LIBRARIES =
 
7
noinst_HEADERS =
 
8
EXTRA_DIST = Modules.am
 
9
BUILT_SOURCES =
 
10
SUBDIRS = 
 
11
#DIST_SUBDIRS = $(SUBDIRS)
 
12
libvlcdir = $(libdir)/vlc/control
 
13
include Modules.am
 
14
 
 
15
if BUILD_MOZILLA
 
16
if HAVE_WIN32
 
17
# There's no need for pic code on win32 so get rid of this to substantially
 
18
# reduce the compilation time.
 
19
pic = no
 
20
endif
 
21
else
 
22
pic = no
 
23
endif
 
24
 
 
25
clean-local:
 
26
        -rm -f *.a *.so *.dll *.sl *.dylib
 
27
 
 
28
all: all-modules
 
29
all-modules:
 
30
        @set fnord $$MAKEFLAGS; amf=$$2; targets=`\
 
31
        if test "$(plugin)" != "no"; then z=$$($(VLC_CONFIG) --target plugin); for mod in corba; do case "$$z" in */lib$${mod}_plugin*) echo lib$${mod}_plugin$(LIBEXT);; esac; done; fi; \
 
32
        if test "$(builtin)" != "no"; then z=$$($(VLC_CONFIG) --target builtin); for mod in corba; do case "$$z" in */lib$${mod}.a*) echo lib$${mod}.a;; esac; done; fi; \
 
33
        if test "$(pic)" != "no"; then z=$$($(VLC_CONFIG) --target builtin pic); for mod in corba; do case "$$z" in */lib$${mod}_pic.a*) echo lib$${mod}_pic.a;; esac; done; fi; \
 
34
        `; case "$$targets" in *lib*) $(MAKE) $(AM_MAKEFLAGS) $$targets || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; ;; esac; \
 
35
        test -z "$$fail"
 
36
 
 
37
# The corba plugin
 
38
 
 
39
clean-local: clean-corba
 
40
clean-corba:
 
41
        -test -z "$(nodist_SOURCES_corba)" || rm -f $(nodist_SOURCES_corba)
 
42
 
 
43
if UNTRUE
 
44
Lcorbap = libcorba_plugin.a
 
45
Dcorbap = libcorba_plugin$(LIBEXT)
 
46
Lcorbab = libcorba.a
 
47
Lcorbapic = libcorba_pic.a
 
48
Bcorba = $(nodist_SOURCES_corba)
 
49
endif
 
50
 
 
51
BUILT_SOURCES += $(Bcorba)
 
52
libcorba_plugin_a_SOURCES = $(SOURCES_corba)
 
53
nodist_libcorba_plugin_a_SOURCES = $(nodist_SOURCES_corba)
 
54
libcorba_plugin_a_CFLAGS = `$(VLC_CONFIG) --cflags plugin corba`
 
55
libcorba_plugin_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags plugin corba`
 
56
libcorba_plugin_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags plugin corba`
 
57
 
 
58
libcorba_pic_a_SOURCES = $(SOURCES_corba)
 
59
nodist_libcorba_pic_a_SOURCES = $(nodist_SOURCES_corba)
 
60
libcorba_pic_a_CFLAGS = `$(VLC_CONFIG) --cflags builtin pic corba`
 
61
libcorba_pic_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags builtin pic corba`
 
62
libcorba_pic_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags builtin pic corba`
 
63
 
 
64
libcorba_a_SOURCES = $(SOURCES_corba)
 
65
nodist_libcorba_a_SOURCES = $(nodist_SOURCES_corba)
 
66
libcorba_a_CFLAGS = `$(VLC_CONFIG) --cflags builtin corba`
 
67
libcorba_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags builtin corba`
 
68
libcorba_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags builtin corba`
 
69
 
 
70
libvlc_LIBRARIES += $(Lcorbab) $(Lcorbapic)
 
71
libcorba_DATA = $(Dcorbap)
 
72
 
 
73
libcorbadir = $(libdir)/vlc/
 
74
noinst_LIBRARIES += $(Lcorbap)
 
75
libcorba_plugin$(LIBEXT): $(libcorba_plugin_a_OBJECTS)
 
76
        @case `$(VLC_CONFIG) --linkage corba` in \
 
77
          c++) echo $(CXXLINK) $(libcorba_plugin_a_OBJECTS) \`$(VLC_CONFIG) --libs plugin corba\` ; $(CXXLINK) $(libcorba_plugin_a_OBJECTS) `$(VLC_CONFIG) --libs plugin corba` ;; \
 
78
          objc) echo $(OBJCLINK) $(libcorba_plugin_a_OBJECTS) \`$(VLC_CONFIG) --libs plugin corba\` ; $(OBJCLINK) $(libcorba_plugin_a_OBJECTS) `$(VLC_CONFIG) --libs plugin corba` ;; \
 
79
          c|*) echo $(LINK) $(libcorba_plugin_a_OBJECTS) \`$(VLC_CONFIG) --libs plugin corba\` ; $(LINK) $(libcorba_plugin_a_OBJECTS) `$(VLC_CONFIG) --libs plugin corba` ;; \
 
80
        esac
 
81
 
 
82