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

« back to all changes in this revision

Viewing changes to gtk/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Kari Pahula
  • Date: 2010-06-17 21:55:04 UTC
  • mfrom: (1.2.8 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100617215504-864remyqayon6dot
Tags: 1.50.0-2
Install cfsndserv*, not cfsndserv_alsa9 to make kfreebsd land happy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Makefile for crossfire client
3
 
#
4
 
#   Copyright (C) 2005 Mark Wedel & Crossfire Development Team
5
 
#
6
 
#   This program is free software; you can redistribute it and/or modify
7
 
#   it under the terms of the GNU General Public License as published by
8
 
#   the Free Software Foundation; either version 2 of the License, or
9
 
#   (at your option) any later version.
10
 
#
11
 
#   This program is distributed in the hope that it will be useful,
12
 
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#   GNU General Public License for more details.
15
 
#
16
 
#   You should have received a copy of the GNU General Public License
17
 
#   along with this program; if not, write to the Free Software
18
 
#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
 
#
20
 
#   The author can be reached via e-mail to crossfire-devel@real-time.com
21
 
 
22
 
 
23
 
bin_PROGRAMS = crossfire-client-gtk
24
 
 
25
 
crossfire_client_gtk_SOURCES = \
26
 
        config.c \
27
 
        gx11.c \
28
 
        help.c \
29
 
        image.c \
30
 
        inventory.c \
31
 
        keys.c \
32
 
        map.c \
33
 
        png.c \
34
 
        sdl.c \
35
 
        sound.c \
36
 
        text.c
37
 
 
38
 
noinst_HEADERS = \
39
 
        gtkproto.h \
40
 
        gx11.h
41
 
 
42
 
EXTRA_DIST = \
43
 
        crossfire-client.desktop
44
 
 
45
 
dist_man6_MANS = \
46
 
        crossfire-client-gtk.man
47
 
 
48
 
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/common -I$(top_srcdir)/pixmaps $(GTK_CFLAGS) $(SDL_CFLAGS)
49
 
 
50
 
crossfire_client_gtk_LDADD = $(GTK_LIBS) $(SDL_LIBS) $(DMALLOC_LIB) ../common/libcfclient.a @LUA_LIBS@
51
 
 
52
 
../common/libcfclient.a:
53
 
        ( cd ../common ; make libcfclient.a )
54
 
 
55
 
 
56
 
# Check if everything is installed as it should
57
 
installcheck-local:
58
 
        $(bindir)/crossfire-client-gtk -help
59
 
 
60
 
proto:
61
 
        cproto -e -o gtkproto.h $(AM_CPPFLAGS) $(crossfire_client_gtk_SOURCES)
62
 
        chmod 644 gtkproto.h