~ubuntu-branches/ubuntu/natty/gsetroot/natty

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): William Vera
  • Date: 2005-07-05 21:55:03 UTC
  • Revision ID: james.westby@ubuntu.com-20050705215503-0s535srcoqdz1n9v
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
## Created by Anjuta - will be overwritten
 
4
## If you don't want it to overwrite it,
 
5
##      Please disable it in the Anjuta project configuration
 
6
 
 
7
INCLUDES = \
 
8
        $(GTK_CFLAGS)
 
9
 
 
10
AM_CFLAGS =\
 
11
         -Wall\
 
12
         -g
 
13
 
 
14
bin_PROGRAMS = gsetroot
 
15
 
 
16
gsetroot_SOURCES = \
 
17
        support.h\
 
18
        support.c\
 
19
        main.c\
 
20
        interface.h\
 
21
        interface.c\
 
22
        callbacks.h\
 
23
        callbacks.c
 
24
 
 
25
gsetroot_LDFLAGS = 
 
26
 
 
27
gsetroot_LDADD =  \
 
28
        $(GTK_LIBS)
 
29