Improve Autotools build system for libgeany
[geany-mirror.git] / tagmanager / ctags / Makefile.am
blobc81ccf73b225f3c34b1ee8ddaf2116e1d3993ed6
1 AM_CPPFLAGS = \
2         -I$(srcdir) \
3         -I$(srcdir)/.. \
4         -DG_LOG_DOMAIN=\"CTags\"
5 AM_CFLAGS = \
6         $(GTK_CFLAGS) \
7         @LIBGEANY_CFLAGS@
9 EXTRA_DIST = \
10         makefile.win32
12 noinst_LTLIBRARIES = libctags.la
14 parsers = \
15         abaqus.c \
16         abc.c \
17         actionscript.c \
18         asciidoc.c \
19         asm.c \
20         basic.c \
21         c.c \
22         cobol.c \
23         conf.c \
24         css.c \
25         diff.c \
26         docbook.c \
27         fortran.c \
28         go.c \
29         haskell.c \
30         haxe.c \
31         html.c \
32         js.c \
33         json.c \
34         latex.c \
35         lregex.c \
36         lua.c \
37         make.c \
38         markdown.c \
39         matlab.c \
40         nsis.c \
41         objc.c \
42         pascal.c \
43         perl.c \
44         php.c \
45         python.c \
46         r.c \
47         rest.c \
48         ruby.c \
49         rust.c \
50         sh.c \
51         sql.c \
52         tcl.c \
53         txt2tags.c \
54         verilog.c \
55         vhdl.c
57 libctags_la_SOURCES = \
58         args.c \
59         args.h \
60         ctags.c \
61         ctags.h \
62         entry.c \
63         entry.h \
64         general.h \
65         get.c \
66         get.h \
67         keyword.c \
68         keyword.h \
69         main.h \
70         nestlevel.c \
71         nestlevel.h \
72         options.c \
73         options.h \
74         parse.c \
75         parse.h \
76         parsers.h \
77         read.c \
78         read.h \
79         sort.c \
80         sort.h \
81         strlist.c \
82         strlist.h \
83         vstring.c \
84         vstring.h \
85         $(parsers)
87 libctags_la_LDFLAGS = @LIBGEANY_LIBS@