~ubuntu-branches/ubuntu/maverick/crossfire-client/maverick

« back to all changes in this revision

Viewing changes to gtk-v2/src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Kari Pahula
  • Date: 2007-04-13 21:15:44 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070413211544-vjo6zesj6g0wgmwf
Tags: 1.10.0-1
* New upstream release
* Install the README, README-dev and TODO files specific to the GTK2
  client to the corresponding package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
INCLUDES = \
23
23
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
24
24
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
25
 
        -I$(top_srcdir)/common \
26
 
        @PACKAGE_CFLAGS@ \
 
25
        -I$(top_srcdir)/common -I$(top_srcdir)/help \
 
26
        @GTK2_CFLAGS@ \
27
27
        @SDL_CFLAGS@
28
28
 
29
29
bin_PROGRAMS = gcfclient2
30
30
 
31
31
PROTO_SOURCES = \
 
32
        about.c \
32
33
        config.c \
33
34
        image.c \
34
35
        info.c \
54
55
        image.h main.h gtk2proto.h \
55
56
        callbacks.h 
56
57
 
57
 
gcfclient2_LDADD = @PACKAGE_LIBS@ @DMALLOC_LIB@ $(X_LIBS) $(INTLLIBS) ../../common/libcfclient.a @SDL_LIBS@ @OPENGL_LIBS@
 
58
gcfclient2_LDADD = ../../common/libcfclient.a @GTK2_LIBS@ @DMALLOC_LIB@ $(INTLLIBS) $(X_LIBS) @SDL_LIBS@ @OPENGL_LIBS@ @WIN32_LIBS@ 
58
59
 
59
60
proto:
60
 
        cproto -e -o gtk2proto.h  $(SDL_CFLAGS) $(PACKAGE_CFLAGS) $(DEFAULT_INCLUDES) $(PROTO_SOURCES)
 
61
        cproto -e -o gtk2proto.h  $(SDL_CFLAGS) $(GTK2_CFLAGS) $(DEFAULT_INCLUDES) $(PROTO_SOURCES)
61
62
        chmod 644 gtk2proto.h
62
63