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