~ubuntu-branches/ubuntu/intrepid/kdebluetooth/intrepid-proposed

« back to all changes in this revision

Viewing changes to kdebluetooth/kbluetooth/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2008-08-07 09:49:47 UTC
  • mto: This revision was merged to the branch mainline in revision 56.
  • Revision ID: james.westby@ubuntu.com-20080807094947-pj6q3uxwuv7l844q
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
METASOURCES = AUTO
2
 
 
3
 
# Code 
4
 
bin_PROGRAMS = kbluetooth
5
 
 
6
 
kbluetooth_SOURCES = adapterconfig.cpp adapterdialog.ui authorize.cpp authdialog.ui deviceconfig.cpp trayicon.cpp main.cpp application.cpp pindefdialog.ui pindialog.cpp confirmationdlgbase.ui confirmation.cpp rfcommportlistener.cpp procinheritsock.cpp portlistener.cpp sdprecord.cpp
7
 
kbluetooth_LDFLAGS = $(KDE_RPATH) $(DBUS_LIBS) -ldbus-qt-1 $(all_libraries)
8
 
kbluetooth_LDADD = ../libkbluetooth/libkbluetooth.la $(LIB_KIO) $(LIB_KDEUI)
9
 
 
10
 
# this is where the desktop file will go
11
 
#shelldesktopdir = $(kde_appsdir)/System
12
 
#shelldesktop_DATA = kbluetooth.desktop
13
 
xdg_apps_DATA = kbluetooth.desktop
14
 
 
15
 
# Autostart entry
16
 
autostartdir = $(datadir)/autostart
17
 
autostart_DATA = kbluetooth.autostart.desktop
18
 
 
19
 
 
20
 
#EXTRA_DIST = $(kbluetooth_SOURCES)\
21
 
#             $(kde_servicetypes_DATA) \
22
 
#            eventsrc 
23
 
 
24
 
#install-data-local:
25
 
#       $(mkinstalldirs) $(DESTDIR)$(kde_datadir)/kbluetooth
26
 
#       $(INSTALL_DATA) $(srcdir)/eventsrc $(DESTDIR)$(kde_datadir)/kbluetooth/eventsrc
27
 
 
28
 
# set the include path for X, qt and KDE
29
 
INCLUDES = -I$(srcdir) -I$(top_srcdir)/kdebluetooth -I$(top_srcdir)/kdebluetooth/libkbluetooth/ $(all_includes) $(DBUS_CFLAGS)
30
 
 
31
 
noinst_HEADERS = trayicon.h application.h pindialog.h authorize.h procinheritsock.h rfcommportlistener.h confirmation.h portlistener.h sdprecord.h
32
 
 
33
 
EXTRA_DIST = trayicon.h application.h pindialog.h authorize.h eventsrc
34
 
install-data-local: 
35
 
        $(mkinstalldirs) $(DESTDIR)$(kde_datadir)/kdebluetooth
36
 
        $(INSTALL_DATA) $(srcdir)/eventsrc $(DESTDIR)$(kde_datadir)/kdebluetooth/eventsrc
37
 
                        
38