~ubuntu-branches/ubuntu/karmic/regexxer/karmic

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-02-19 11:28:21 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070219112821-3w5j8kdhwiar1uoh
Tags: 0.9-0ubuntu1
* New upstream release:
  - Command line option support
  - Icon theme support
  - Now builds a working executable on systems with newer libglade
  - New GTK+ file chooser button
  - Replaced about dialog with stock GTK+ one
  - Completely revamped build system
  - Lots of new translations: bg ca dz es eu fi fr hu ne pa pl sl sr 
    sr@Latn uk vi zh_CN zh_HK zh_TW
  - Other minor cleanups and fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## $Id: Makefile.am,v 1.22 2004/07/06 02:01:42 daniel Exp $
2
 
##
3
 
## Copyright (c) 2002  Daniel Elstner  <daniel.elstner@gmx.net>
4
 
##
5
 
## This program is free software; you can redistribute it and/or modify
6
 
## it under the terms of the GNU General Public License VERSION 2 as
7
 
## published by the Free Software Foundation.  You are not allowed to
8
 
## use any other version of the license; unless you got the explicit
9
 
## permission from the author to do so.
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 
 
20
 
bin_PROGRAMS = regexxer
21
 
 
22
 
regexxer_SOURCES =              \
23
 
        aboutdialog.cc          \
24
 
        aboutdialog.h           \
25
 
        controller.cc           \
26
 
        controller.h            \
27
 
        filebuffer.cc           \
28
 
        filebuffer.h            \
29
 
        filebufferundo.cc       \
30
 
        filebufferundo.h        \
31
 
        fileio.cc               \
32
 
        fileio.h                \
33
 
        fileshared.cc           \
34
 
        fileshared.h            \
35
 
        filetree.cc             \
36
 
        filetree.h              \
37
 
        filetreeprivate.cc      \
38
 
        filetreeprivate.h       \
39
 
        globalstrings.h         \
40
 
        main.cc                 \
41
 
        mainwindow.cc           \
42
 
        mainwindow.h            \
43
 
        miscutils.cc            \
44
 
        miscutils.h             \
45
 
        pcreshell.cc            \
46
 
        pcreshell.h             \
47
 
        prefdialog.cc           \
48
 
        prefdialog.h            \
49
 
        sharedptr.cc            \
50
 
        sharedptr.h             \
51
 
        signalutils.cc          \
52
 
        signalutils.h           \
53
 
        statusline.cc           \
54
 
        statusline.h            \
55
 
        stringutils.cc          \
56
 
        stringutils.h           \
57
 
        translation.cc          \
58
 
        translation.h           \
59
 
        undostack.cc            \
60
 
        undostack.h
61
 
 
62
 
dist_noinst_DATA = exported-symbols
63
 
 
64
 
global_defines = \
65
 
-DREGEXXER_DATADIR=\""$(datadir)"\" \
66
 
-DREGEXXER_PKGDATADIR=\""$(pkgdatadir)"\" \
67
 
-DREGEXXER_GCONF_DIRECTORY=\""$(REGEXXER_GCONF_DIRECTORY)"\" \
68
 
-DGTKMM_DISABLE_DEPRECATED
69
 
 
70
 
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) $(global_defines) $(PKG_CFLAGS) $(PCRE_CFLAGS)
71
 
regexxer_DEPENDENCIES = exported-symbols
72
 
regexxer_LDFLAGS = $(REGEXXER_VERSION_SCRIPT)
73
 
regexxer_LDADD = $(LIBINTL) $(PKG_LIBS) $(PCRE_LIBS)
74