~ubuntu-branches/ubuntu/utopic/sipwitch/utopic

« back to all changes in this revision

Viewing changes to switchview/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard
  • Date: 2012-06-25 16:55:59 UTC
  • Revision ID: package-import@ubuntu.com-20120625165559-3g3z1w6qxysi9t08
* New upstream release.

* Update upstream source URL.
* Extend copyright coverage of packaging.
* Add Vcs-* URLs to control file.
* Unfuzz patch 1001.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008-2010 David Sugar, Tycho Softworks.
 
2
#
 
3
# This file is free software; as a special exception the author gives
 
4
# unlimited permission to copy and/or distribute it, with or without
 
5
# modifications, as long as this notice is preserved.
 
6
#
 
7
# This program is distributed in the hope that it will be useful, but
 
8
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 
9
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
10
 
 
11
MAINTAINERCLEANFILES = Makefile.in Makefile
 
12
AM_CXXFLAGS = -I$(top_srcdir)/inc @SIPWITCH_FLAGS@ @QT_CFLAGS@
 
13
LDADD = @SIPWITCH_LIBS@ @QT_LIBS@
 
14
BUILT_SOURCES = ui_options.h ui_mapped.h
 
15
EXTRA_DIST = CMakeLists.txt switchview.png switchview.desktop switchview-autostart.desktop switchview.1
 
16
 
 
17
man_MANS = switchview.1
 
18
 
 
19
noinst_HEADERS = switchview.h options.ui mapped.ui switchview.qrc \
 
20
        dialog-error.png dialog-information.png switchview_down.png \
 
21
        switchview_live.png dialog-warning.png exit.png reload.png \
 
22
        help-about.png index.theme connect_creating.png preferences-other.png
 
23
 
 
24
bin_PROGRAMS = switchview
 
25
 
 
26
autostartdir = ${sysconfdir}/xdg/autostart
 
27
applicationsdir = ${datadir}/applications
 
28
pixmapsdir = ${datadir}/pixmaps
 
29
 
 
30
pixmaps_DATA = switchview.png
 
31
autostart_DATA = switchview-autostart.desktop
 
32
applications_DATA = switchview.desktop
 
33
 
 
34
nodist_switchview_SOURCES = moc_switchview.cpp qrc_switchview.cpp
 
35
switchview_SOURCES = switchview.cpp events.cpp mapped.cpp options.cpp \
 
36
        startup.cpp
 
37
#moc_xxx.cpp qrc_xxx.cpp
 
38
#nodist_app_HEADERS = ui_xxx.h
 
39
 
 
40
ui_options.h:   options.ui
 
41
        @UIC@ -o $@ $<
 
42
 
 
43
ui_mapped.h:    mapped.ui
 
44
        @UIC@ -o $@ $<
 
45
 
 
46
moc_switchview.cpp:     switchview.h
 
47
        @MOC@ -o $@ $<
 
48
 
 
49
qrc_switchview.cpp:     switchview.qrc
 
50
        @RCC@ -o $@ $<
 
51