Merge pull request #482 from philippwiesemann/fix-typos-po-de
[geany-mirror.git] / tagmanager / ctags / Makefile.am
blob575e653e157054c548ec3161e2be687a91f886ad
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         erlang.c \
28         fortran.c \
29         go.c \
30         haskell.c \
31         haxe.c \
32         html.c \
33         js.c \
34         json.c \
35         latex.c \
36         lregex.c \
37         lua.c \
38         make.c \
39         markdown.c \
40         matlab.c \
41         nsis.c \
42         objc.c \
43         pascal.c \
44         perl.c \
45         php.c \
46         python.c \
47         r.c \
48         rest.c \
49         ruby.c \
50         rust.c \
51         sh.c \
52         sql.c \
53         tcl.c \
54         txt2tags.c \
55         verilog.c \
56         vhdl.c
58 libctags_la_SOURCES = \
59         args.c \
60         args.h \
61         ctags.c \
62         ctags.h \
63         entry.c \
64         entry.h \
65         general.h \
66         get.c \
67         get.h \
68         keyword.c \
69         keyword.h \
70         main.h \
71         nestlevel.c \
72         nestlevel.h \
73         options.c \
74         options.h \
75         parse.c \
76         parse.h \
77         parsers.h \
78         read.c \
79         read.h \
80         sort.c \
81         sort.h \
82         strlist.c \
83         strlist.h \
84         vstring.c \
85         vstring.h \
86         $(parsers)