~ubuntu-branches/ubuntu/utopic/gxine/utopic-proposed

« back to all changes in this revision

Viewing changes to .pc/debian-changes/src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2014-05-07 21:34:55 UTC
  • mfrom: (2.1.17 sid)
  • Revision ID: package-import@ubuntu.com-20140507213455-qnu5diwyyj8bkaap
Tags: 0.5.907-3ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/rules, debian/control: use dh-autoreconf at build time.
  - debian/control: Add Xb-Npp-xxx, Xb-Npp-Description and Xb-Npp-File
    fields.
  - src/script_engine.c: fix a remaining memory leak issue associated with
    using JS_EncodeString(), which somehow didn't get fixed upstream
  - debian/gxineplugin.links: Add a link to xulrunner-addons/plugins
    directory.
  - mime.default: Add dvd, vcd, svcd tags.
* Dropped changes, no longer needed:
  - debian/gxine.install: no need to diverge from Debian since we no longer
    ship a wrapper
* All other changes dropped, as they have been included upstream or in
  Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/misc/Makefile.quiet
 
2
 
 
3
localedir = $(datadir)/locale
 
4
 
 
5
INCLUDES = -I../include -I$(top_srcdir)/include -I$(includedir) \
 
6
           -I$(top_builddir)/pixmaps $(LIRC_INCLUDE)
 
7
 
 
8
AM_CFLAGS = $(GNU99) $(XINE_CFLAGS) $(X_CFLAGS) \
 
9
            $(GTK2_CFLAGS) $(GTHREAD2_CFLAGS) \
 
10
            $(HAL_CFLAGS) $(UDEV_CFLAGS) $(DBUS_CFLAGS) $(JS_CFLAGS) \
 
11
            -DLOCALEDIR=\"$(localedir)\"
 
12
 
 
13
bin_PROGRAMS = gxine gxine_client
 
14
 
 
15
noinst_PROGRAMS = mktrans
 
16
 
 
17
gxine_SOURCES = \
 
18
        console_output.c \
 
19
        desktop_integration.c \
 
20
        drag_drop.c \
 
21
        engine.c \
 
22
        gtkflipbutton.c \
 
23
        gtkvideo.c \
 
24
        http.c \
 
25
        info_widgets.c \
 
26
        history.c \
 
27
        key_events.c \
 
28
        lirc.c \
 
29
        list_menus.c \
 
30
        log_window.c \
 
31
        main.c \
 
32
        mediamarks.c \
 
33
        menu.c \
 
34
        noskin_window.c \
 
35
        open_mrl.c \
 
36
        play_item.c \
 
37
        player.c \
 
38
        playlist.c \
 
39
        post.c \
 
40
        preferences.c \
 
41
        script_engine.c \
 
42
        server.c \
 
43
        settings.c \
 
44
        snapshot.c \
 
45
        stream_info.c \
 
46
        systray.c \
 
47
        ui.c \
 
48
        utils.c \
 
49
        vis.c \
 
50
        wizards.c \
 
51
        xml_widgets.c
 
52
 
 
53
gxine_LDADD = $(XINE_LIBS) $(GTK2_LIBS) $(GTHREAD2_LIBS) \
 
54
              $(JS_LIBS) $(HAL_LIBS) $(UDEV_LIBS) $(DBUS_LIBS) $(LIRC_LIBS) \
 
55
              $(X_LIBS) $(X_EXTRA_LIBS) $(XEXT_LIBS) $(XTEST_LIBS) \
 
56
              $(XINERAMA_LIBS) $(XRANDR_LIBS) $(XCB_LIBS)
 
57
 
 
58
gxine_client_SOURCES = client.c console_output.c
 
59
 
 
60
gxine_client_CFLAGS = $(AM_CFLAGS) -DGXINE_CLIENT
 
61
 
 
62
gxine_client_LDADD = $(LDADD) $(GLIB2_LIBS) $(NET_LIBS)
 
63
 
 
64
mktrans_SOURCES = xml_widgets.c
 
65
 
 
66
mktrans_CFLAGS = -DMAKE_TRANSLATION_SOURCE $(AM_CFLAGS)
 
67
 
 
68
mktrans_LDADD = $(XINE_LIBS) $(GLIB2_LIBS) $(INTLLIBS)
 
69
 
 
70
noinst_HEADERS = \
 
71
        console_output.h \
 
72
        defs.h \
 
73
        desktop_integration.h \
 
74
        drag_drop.h \
 
75
        engine.h \
 
76
        globals.h \
 
77
        gtkflipbutton.h \
 
78
        gtkvideo.h \
 
79
        history.h \
 
80
        http.h \
 
81
        info_widgets.h \
 
82
        key_events.h \
 
83
        lirc.h \
 
84
        list_menus.h \
 
85
        log_window.h \
 
86
        mediamarks.h \
 
87
        menu.h \
 
88
        noskin_window.h \
 
89
        open_mrl.h \
 
90
        play_item.h \
 
91
        player.h \
 
92
        playlist.h \
 
93
        post.h \
 
94
        preferences.h \
 
95
        script_engine.h \
 
96
        server.h \
 
97
        settings.h \
 
98
        snapshot.h \
 
99
        stream_info.h \
 
100
        systray.h \
 
101
        ui.h \
 
102
        utils.h \
 
103
        vis.h \
 
104
        watchdog.h \
 
105
        wizards.h \
 
106
        xml_widgets.h
 
107
 
 
108
debug: CFLAGS=$(DEBUG_CFLAGS) $(AM_CFLAGS)
 
109
debug: all
 
110
 
 
111
install-debug: debug
 
112
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
113
 
 
114
$(top_srcdir)/include/version.h:
 
115
        @$(MAKE) -C $(top_srcdir)/include version.h
 
116
 
 
117
mostlyclean-generic:
 
118
        -rm -f *~ \#* .*~ .\#*
 
119
 
 
120
 
 
121
maintainer-clean-generic:
 
122
        -@echo "This command is intended for maintainers to use;"
 
123
        -@echo "it deletes files that may require special tools to rebuild."
 
124
        -rm -f Makefile.in