Add PowerShell tag parser
[geany-mirror.git] / tagmanager / ctags / Makefile.am
blob7385eb4965ff38c8c272bb02be2aaa2e483b0107
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         powershell.c \
47         python.c \
48         r.c \
49         rest.c \
50         ruby.c \
51         rust.c \
52         sh.c \
53         sql.c \
54         tcl.c \
55         txt2tags.c \
56         verilog.c \
57         vhdl.c
59 libctags_la_SOURCES = \
60         args.c \
61         args.h \
62         ctags.c \
63         ctags.h \
64         entry.c \
65         entry.h \
66         general.h \
67         get.c \
68         get.h \
69         keyword.c \
70         keyword.h \
71         main.h \
72         nestlevel.c \
73         nestlevel.h \
74         options.c \
75         options.h \
76         parse.c \
77         parse.h \
78         parsers.h \
79         read.c \
80         read.h \
81         sort.c \
82         sort.h \
83         strlist.c \
84         strlist.h \
85         vstring.c \
86         vstring.h \
87         $(parsers)