~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to klipper/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-27 12:09:48 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080527120948-dottsyd5rcwhzd36
Tags: 4:4.0.80-1ubuntu1
* Merge with Debian
 - remove 97_fix_target_link_libraries.diff
 - Add replaces/conflicts on -kde4 packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INCLUDES= $(all_includes)
2
 
 
3
 
bin_PROGRAMS =
4
 
lib_LTLIBRARIES =
5
 
noinst_LTLIBRARIES = libklipper_common.la
6
 
kdeinit_LTLIBRARIES = klipper.la
7
 
kde_module_LTLIBRARIES = klipper_panelapplet.la
8
 
 
9
 
CLEANFILES = dummy.cpp
10
 
 
11
 
libklipper_common_la_LIBADD = $(LIB_KDEUI) $(LIB_KSYCOCA) $(LIB_XFIXES)
12
 
libklipper_common_la_SOURCES = main.cpp toplevel.cpp urlgrabber.cpp configdialog.cpp \
13
 
    toplevel.skel clipboardpoll.cpp history.cpp historyitem.cpp historystringitem.cpp klipperpopup.cpp popupproxy.cpp \
14
 
    historyimageitem.cpp historyurlitem.cpp
15
 
 
16
 
libklipper_common_la_METASOURCES = AUTO
17
 
libklipper_common_la_LDFLAGS = $(all_libraries)
18
 
 
19
 
klipper_la_LIBADD = libklipper_common.la
20
 
klipper_la_SOURCES = dummy.cpp
21
 
klipper_la_LDFLAGS = $(all_libraries) -module -avoid-version
22
 
 
23
 
klipper_panelapplet_la_LIBADD = libklipper_common.la
24
 
klipper_panelapplet_la_SOURCES = applet.cpp applet.skel
25
 
klipper_panelapplet_la_LDFLAGS = $(all_libraries) -module -avoid-version
26
 
 
27
 
xdg_apps_DATA = klipper.desktop
28
 
 
29
 
autostartdir = $(datadir)/autostart
30
 
autostart_DATA = klipper.desktop
31
 
 
32
 
appldir = $(kde_datadir)/kicker/applets
33
 
appl_DATA = klipper.desktop
34
 
 
35
 
install-data-local:
36
 
        $(mkinstalldirs) $(DESTDIR)$(kde_confdir)
37
 
        $(INSTALL_DATA) $(srcdir)/klipperrc.desktop $(DESTDIR)$(kde_confdir)/klipperrc
38
 
 
39
 
KDE_ICON = klipper
40
 
 
41
 
messages:
42
 
        $(XGETTEXT) *.cpp -o $(podir)/klipper.pot
43
 
 
44
 
dummy.cpp:
45
 
        echo > dummy.cpp
46
 
 
47
 
# update script:
48
 
updatedir = $(kde_datadir)/kconf_update
49
 
update_DATA = klipperrc.upd klippershortcuts.upd
50
 
update_SCRIPTS = klipper-1-2.pl klipper-kde31.sh
51