~ubuntu-branches/debian/lenny/gsynaptics/lenny

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michal Čihař
  • Date: 2008-06-18 11:24:03 UTC
  • mfrom: (3.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080618112403-ishc48mp2dkf2t40
Tags: 0.9.14-6
* Move fix for g_build_filename to separate patch.
* Add debian/README.source.
* Update to standards 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
bin_PROGRAMS = gsynaptics gsynaptics-init
2
2
gsynaptics_CFLAGS =                             \
3
3
        -DDATADIR=\""$(datadir)/$(PACKAGE)"\"   \
 
4
        -DHELPDATADIR=\""$(datadir)"\"          \
4
5
        $(GTK_CFLAGS)                           \
5
 
        $(GNOME_CFLAGS)                         \
6
6
        $(GLADE2_CFLAGS)                        \
 
7
        $(GCONF2_CFLAGS)                        \
7
8
        $(AM_CFLAGS)
8
9
 
9
10
gsynaptics_SOURCES =                    \
10
11
        gsynaptics-conf.h               \
11
 
        synaptics.h                     \
 
12
        synshm.h                        \
12
13
        main.c                          \
13
14
        gsynaptics.c gsynaptics.h
14
15
 
15
16
gsynaptics_LDADD =      \
16
17
        $(GTK_LIBS)     \
17
 
        $(GNOME_LIBS)   \
18
 
        $(GLADE2_LIBS)
 
18
        $(GLADE2_LIBS)  \
 
19
        $(GCONF2_LIBS)
19
20
 
20
21
gsynaptics_init_SOURCES =               \
21
22
        gsynaptics-conf.h               \
22
 
        synaptics.h                     \
 
23
        synshm.h                        \
23
24
        init.c                          \
24
25
        gsynaptics.c gsynaptics.h
25
26
 
26
27
gsynaptics_init_CFLAGS =                                \
 
28
        $(GTK_CFLAGS)                           \
27
29
        $(GLIB_CFLAGS)                          \
28
30
        $(GNOME_CFLAGS)                         \
 
31
        $(GCONF2_CFLAGS)                        \
29
32
        $(AM_CFLAGS)
30
33
 
31
34
gsynaptics_init_LDADD = \
 
35
        $(GTK_LIBS)     \
32
36
        $(GLIB_LIBS)    \
33
 
        $(GNOME_LIBS)
34
 
 
 
37
        $(GNOME_LIBS)   \
 
38
        $(GCONF2_LIBS)