Merge Ada support from the GNU Ada Source Forge project

<http://sourceforge.net/p/gnuada/> see tools/ctags
This commit is contained in:
R. Tyler Croy 2014-01-19 12:08:56 -08:00
parent 6f1f16c3ca
commit 75a50140a1
4 changed files with 2220 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.o

2216
ada.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -16,6 +16,7 @@
/* Add the name of any new parser definition function here */
#define PARSER_LIST \
AdaParser, \
AntParser, \
AsmParser, \
AspParser, \

View File

@ -9,6 +9,7 @@ HEADERS = \
SOURCES = \
args.c \
ada.c \
ant.c \
asm.c \
asp.c \
@ -72,6 +73,7 @@ REGEX_HEADERS = gnu_regex/regex.h
OBJECTS = \
args.$(OBJEXT) \
ada.$(OBJEXT) \
ant.$(OBJEXT) \
asm.$(OBJEXT) \
asp.$(OBJEXT) \