~vcs-imports/enter/trunk

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: rob_dobbs
  • Date: 2010-07-10 21:34:41 UTC
  • Revision ID: vcs-imports@canonical.com-20100710213441-bfmv34uaiv1lne1d
moving towards gtk

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        conf.c conf.h \
12
12
        auth.c auth.h \
13
13
        log.c log.h \
14
 
        login.c login.h \
15
 
        display.c display.h \
16
 
        gui_image.c gui_image.h \
17
 
        gui_label.c gui_label.h \
18
 
        gui_input.c gui_input.h \
19
 
        gui_widget.c gui_widget.h \
20
 
        gui.c gui.h \
21
 
        greeter.c greeter.h
 
14
        login.c login.h
22
15
 
23
16
enter_CFLAGS = \
24
 
        @IMLIB2_CFLAGS@ @XCB_CFLAGS@ \
25
 
        @XAU_CFLAGS@ @GLIB_CFLAGS@ \
 
17
        @GTK_CFLAGS@ \
 
18
        @XAU_CFLAGS@ \
26
19
        -DCONFDIR=\"$(sysconfdir)\" -DTHEMEDIR=\"$(datadir)/@PACKAGE@/themes\"
27
20
 
28
 
enter_LDFLAGS = \
29
 
        @IMLIB2_LIBS@ @XCB_LIBS@ \
30
 
        @XAU_LIBS@ @GLIB_LIBS@ -lcrypt
 
21
enter_LDADD = \
 
22
        @GTK_LIBS@ \
 
23
        @XAU_LIBS@ -lcrypt
31
24