~ubuntu-branches/ubuntu/trusty/gnomeradio/trusty

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Package Import Robot
  • Author(s): POJAR GEORGE
  • Date: 2013-09-20 13:31:33 UTC
  • Revision ID: package-import@ubuntu.com-20130920133133-otwactksfjh4bwev
Tags: 1.8-2ubuntu23
* Updated debian/patches/gnomeradio-tray_menu.patch:
  - Fixed menu item not update conform new order when we use move up[down]
    swap. (LP: #1232931)
  - Fixed conditional jump or move depends on uninitialized value.
  - Added function to switch to preset in settings preset list when changed
    them from tray menu.
  - Cleaned up the files relating to the tray icon. Neither gui.c, prefs.c nor
    record.c touch the internals of trayicon.c anymore.
* Updated debian/patches/gnomeradio-preferences.patch:
  - Added option to disable audio loopback mode in Preferences settings.
  - Moved in separate GOptionGroup all command line parameters which refers to
    audio loopback mode.
* Updated debian/patches/gnomeradio-device.patch: Not need radio_mute() when
  exit or session die, already is called in radio_stop().
* Updated debian/patches/gnomeradio-station_list.patch: Fixed pointer targets
  in passing argument differ in signedness.
* Removed the content against configure and Makefile.in, since we use
  autoreconf anyways, from:
  - debian/patches/gnomeradio-gstreamer-1.0.patch.
  - debian/patches/gnomeradio-volume_button.patch.
* Updated debian/patches/gnomeradio-volume_button.patch: Removed unused
  vol_down[up].xpm icons.
* debian/gnomeradio.1: Updated man page.   

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
am__installdirs = "$(DESTDIR)$(bindir)"
50
50
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
51
51
PROGRAMS = $(bin_PROGRAMS)
52
 
am_gnomeradio_OBJECTS = gui.$(OBJEXT) \
 
52
am_gnomeradio_OBJECTS = bacon-volume.$(OBJEXT) gui.$(OBJEXT) \
53
53
        lirc.$(OBJEXT) prefs.$(OBJEXT) radio.$(OBJEXT) \
54
54
        rec_tech.$(OBJEXT) record.$(OBJEXT) tech.$(OBJEXT) \
55
55
        trayicon.$(OBJEXT) v4l1.$(OBJEXT) v4l2.$(OBJEXT)
247
247
sysconfdir = @sysconfdir@
248
248
target_alias = @target_alias@
249
249
INCLUDES = -I$(top_srcdir) -I$(includedir) \
250
 
           $(GNOME_CFLAGS) $(GSTREAMER_CFLAGS) $(XML_CFLAGS) \
 
250
           $(GNOME_CFLAGS) $(GSTREAMER_CFLAGS) \
251
251
           -DG_LOG_DOMAIN=\"gnomeradio\" \
252
252
           -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
253
253
           -DDATADIR=\""$(datadir)/"\" \
256
256
           -DSYSCONFDIR=\""$(sysconfdir)/"\"
257
257
 
258
258
gnomeradio_SOURCES = \
 
259
            bacon-volume.h \
259
260
            gui.h \
260
261
            lirc.h \
261
262
            prefs.h \
266
267
            trayicon.h \
267
268
            v4l1.h \
268
269
            v4l2.h \
 
270
            bacon-volume.c \
269
271
            gui.c \
270
272
            lirc.c \
271
273
            prefs.c \
277
279
            v4l1.c \
278
280
            v4l2.c
279
281
 
280
 
gnomeradio_LDADD = $(GNOME_LIBS) $(GSTREAMER_LIBS) $(XML_LIBS) $(LIRC)
 
282
gnomeradio_LDADD = $(GNOME_LIBS) $(GSTREAMER_LIBS) $(LIRC)
281
283
all: all-am
282
284
 
283
285
.SUFFIXES:
349
351
distclean-compile:
350
352
        -rm -f *.tab.c
351
353
 
 
354
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bacon-volume.Po@am__quote@
352
355
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gui.Po@am__quote@
353
356
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lirc.Po@am__quote@
354
357
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/prefs.Po@am__quote@