Add Objective-C support
[geany-mirror.git] / tagmanager / Makefile.am
blob7542517e9c8775ce52dd090701c49944cc40d1e6
1 ## Process this file with automake to produce Makefile.in
3 SUBDIRS = mio include
4 INCLUDES = -I$(srcdir)/include $(GTK_CFLAGS) -I$(srcdir)/mio -I$(srcdir)
6 AM_CFLAGS = -DG_LOG_DOMAIN=\""Tagmanager"\"
8 # regex.c is the GNU regex implementation needed for Windows
9 EXTRA_DIST = regex.c \
10         makefile.win32
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         cobol.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         objc.c\
57         pascal.c\
58         perl.c\
59         rest.c\
60         ruby.c\
61         sql.c\
62         php.c\
63         python.c\
64         tcl.c\
65         sh.c\
66         txt2tags.c\
67         vhdl.c\
68         verilog.c\
69         actionscript.c\
70         nsis.c\
71         r.c \
72         ctags.c\
73         entry.c\
74         get.c\
75         keyword.c\
76         nestlevel.c\
77         options.h\
78         options.c\
79         parse.c\
80         read.c\
81         sort.c\
82         strlist.c\
83         vstring.c\
84         tm_workspace.c\
85         tm_work_object.c\
86         tm_source_file.c\
87         tm_project.c\
88         tm_tag.c\
89         tm_symbol.c\
90         tm_file_entry.c\
91         tm_tagmanager.c \
92         $(regex_sources)