Make plugin_signal_connect() string argument const (patch by
[geany-mirror.git] / tagmanager / Makefile.am
blob328cec4d06df39e4cc792f988ea086085931e545
1 ## Process this file with automake to produce Makefile.in
2 # $Id$
4 SUBDIRS = include
5 INCLUDES = -I$(srcdir)/include $(GTK_CFLAGS)
6 #       -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED \
7 #       -DGDK_PIXBUF_DEPRECATED \
8 #       -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED
10 # regex.c is the GNU regex implementation needed for Windows
11 EXTRA_DIST = regex.c
13 noinst_LIBRARIES = libtagmanager.a
15 if USE_INCLUDED_REGEX
16 regex_sources = regex.c
17 else
18 regex_sources =
19 endif
21 libtagmanager_a_SOURCES =\
22         general.h\
23         keyword.h\
24         parsers.h\
25         sort.h\
26         vstring.h\
27         ctags.h\
28         entry.h\
29         get.h\
30         main.h\
31         nestlevel.h\
32         read.h\
33         parse.h\
34         strlist.h\
35         args.c\
36         args.h\
37         abc.c\
38         basic.c\
39         c.c\
40         conf.c\
41         css.c\
42         diff.c\
43         docbook.c\
44         fortran.c\
45         haskell.c\
46         haxe.c\
47         html.c\
48         js.c\
49         lua.c\
50         make.c\
51         asm.c\
52         latex.c\
53         lregex.c\
54         matlab.c\
55         markdown.c\
56         pascal.c\
57         perl.c\
58         rest.c\
59         ruby.c\
60         sql.c\
61         php.c\
62         python.c\
63         tcl.c\
64         sh.c\
65         txt2tags.c\
66         vhdl.c\
67         verilog.c\
68         actionscript.c\
69         nsis.c\
70         r.c \
71         ctags.c\
72         entry.c\
73         get.c\
74         keyword.c\
75         nestlevel.c\
76         options.h\
77         options.c\
78         parse.c\
79         read.c\
80         sort.c\
81         strlist.c\
82         vstring.c\
83         tm_workspace.c\
84         tm_work_object.c\
85         tm_source_file.c\
86         tm_project.c\
87         tm_tag.c\
88         tm_symbol.c\
89         tm_file_entry.c\
90         tm_tagmanager.c \
91         $(regex_sources)