~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to tagmanager/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-01-01 18:40:50 UTC
  • mfrom: (1.1.8 upstream) (3.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20090101184050-u635kualu7amyt4a
Tags: 0.15-1ubuntu1
* Merge from debian experimental, remaining change:
  - patches/20_add_debdiff_as_diff_type.dpatch: Also recognize .dpatch files
    as diff's
  - debian/geany.xpm: Replace icon with a .xpm of the new one

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
 
# $Id: Makefile.am 2317 2008-03-09 18:50:41Z eht16 $
 
2
# $Id: Makefile.am 3106 2008-10-16 16:57:42Z eht16 $
3
3
 
4
4
SUBDIRS = include
5
5
INCLUDES = -I$(srcdir)/include $(GTK_CFLAGS)
11
11
EXTRA_DIST = regex.c
12
12
 
13
13
noinst_LIBRARIES = libtagmanager.a
 
14
 
 
15
if USE_INCLUDED_REGEX
 
16
regex_sources = regex.c
 
17
else
 
18
regex_sources =
 
19
endif
 
20
 
14
21
libtagmanager_a_SOURCES =\
15
22
        general.h\
16
23
        keyword.h\
17
24
        parsers.h\
18
25
        sort.h\
19
26
        vstring.h\
20
 
        args.h\
21
27
        ctags.h\
22
28
        entry.h\
23
29
        get.h\
71
77
        tm_tag.c\
72
78
        tm_symbol.c\
73
79
        tm_file_entry.c\
74
 
        tm_tagmanager.c
 
80
        tm_tagmanager.c \
 
81
        $(regex_sources)
75
82