~ubuntu-branches/ubuntu/vivid/smb4k/vivid

« back to all changes in this revision

Viewing changes to smb4k/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2005-03-29 12:15:53 UTC
  • Revision ID: james.westby@ubuntu.com-20050329121553-s5ohipujfw3wmo25
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####### kdevelop will overwrite this part!!! (begin)##########
 
2
bin_PROGRAMS = smb4k
 
3
 
 
4
## INCLUDES were found outside kdevelop specific part
 
5
 
 
6
smb4k_SOURCES = smb4k.cpp main.cpp
 
7
smb4k_LDADD   = ./core/libcore.a ./widgets/libwidgets.a $(LIB_KFILE) $(LIB_KDEUI) $(LIB_KDECORE) $(LIB_QT) $(LIBSOCKET)
 
8
 
 
9
SUBDIRS = icons core widgets
 
10
 
 
11
EXTRA_DIST = main.cpp smb4k.cpp smb4k.h smb4kui.rc smb4k.desktop 
 
12
 
 
13
KDE_ICON = smb4k
 
14
 
 
15
xdg_apps_DATA = smb4k.desktop
 
16
 
 
17
####### kdevelop will overwrite this part!!! (end)############
 
18
# These paths are KDE specific. Use them:
 
19
# kde_appsdir         Where your application's menu entry (.desktop) should go to.
 
20
# kde_icondir         Where your icon should go to - better use KDE_ICON.
 
21
# kde_sounddir        Where your sounds should go to.
 
22
# kde_htmldir         Where your docs should go to. (contains lang subdirs)
 
23
# kde_datadir         Where you install application data. (Use a subdir)
 
24
# kde_locale          Where translation files should go to. (contains lang subdirs)
 
25
# kde_cgidir          Where cgi-bin executables should go to.
 
26
# kde_confdir         Where config files should go to (system-wide ones with default values).
 
27
# kde_mimedir         Where mimetypes .desktop files should go to.
 
28
# kde_servicesdir     Where services .desktop files should go to.
 
29
# kde_servicetypesdir Where servicetypes .desktop files should go to.
 
30
# kde_toolbardir      Where general toolbar icons should go to (deprecated, use KDE_ICON).
 
31
# kde_wallpaperdir    Where general wallpapers should go to.
 
32
# kde_templatesdir    Where templates for the "New" menu (Konqueror/KDesktop) should go to.
 
33
# kde_bindir          Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
 
34
# kde_libdir          Where shared libraries should go to. Use lib_LTLIBRARIES.
 
35
# kde_moduledir       Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
 
36
# kde_styledir        Where Qt/KDE widget styles should go to (new in KDE 3).
 
37
# kde_designerdir     Where Qt Designer plugins should go to (new in KDE 3).
 
38
 
 
39
# set the include path for X, qt and KDE
 
40
INCLUDES = $(all_includes)
 
41
 
 
42
METASOURCES = AUTO
 
43
 
 
44
# the library search path. 
 
45
smb4k_LDFLAGS = $(all_libraries) $(KDE_RPATH)
 
46
 
 
47
rcdir = $(kde_datadir)/smb4k
 
48
rc_DATA = smb4kui.rc
 
49
 
 
50
messages: rc.cpp
 
51
        $(XGETTEXT) *.cpp core/*.cpp widgets/*.cpp -o $(podir)/smb4k.pot
 
52
 
 
53