~ubuntu-branches/ubuntu/karmic/xfce4-session/karmic

« back to all changes in this revision

Viewing changes to xfce4-autostart-editor/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2009-04-19 18:13:45 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (4.2.1 squeeze) (1.1.16 upstream)
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20090419181345-o1rev68obla00xef
ImportĀ upstreamĀ versionĀ 4.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile.am 20833 2006-04-09 18:08:17Z benny $
2
 
 
3
 
INCLUDES =                                                              \
4
 
        -I$(top_srcdir)                                                 \
5
 
        -DG_LOG_DOMAIN=\"xfce4-autostart-editor\"                       \
6
 
        -DPACKAGE_LOCALE_DIR=\"$(localedir)\"
7
 
 
8
 
bin_PROGRAMS =                                                          \
9
 
        xfce4-autostart-editor
10
 
 
11
 
xfce4_autostart_editor_SOURCES =                                        \
12
 
        main.c                                                          \
13
 
        xfae-dialog.c                                                   \
14
 
        xfae-dialog.h                                                   \
15
 
        xfae-model.c                                                    \
16
 
        xfae-model.h                                                    \
17
 
        xfae-window.c                                                   \
18
 
        xfae-window.h
19
 
 
20
 
xfce4_autostart_editor_CFLAGS =                                         \
21
 
        @LIBXFCEGUI4_CFLAGS@
22
 
 
23
 
xfce4_autostart_editor_LDADD =                                          \
24
 
        @LIBXFCEGUI4_LIBS@
25
 
 
26
 
desktopdir = $(datadir)/applications
27
 
desktop_in_files = xfce4-autostart-editor.desktop.in
28
 
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
29
 
@INTLTOOL_DESKTOP_RULE@
30
 
 
31
 
EXTRA_DIST =                                                            \
32
 
        $(desktop_in_files)
33
 
 
34
 
DISTCLEANFILES =                                                        \
35
 
        $(desktop_DATA)
36
 
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: