2005-11-22 12:26:26 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
2006-01-11 18:50:44 +00:00
|
|
|
# $Id$
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
SUBDIRS = include
|
2007-06-26 18:08:00 +00:00
|
|
|
INCLUDES = -I$(srcdir)/include $(GTK_CFLAGS)
|
2005-11-22 12:26:26 +00:00
|
|
|
# -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED \
|
|
|
|
# -DGDK_PIXBUF_DEPRECATED \
|
|
|
|
# -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED
|
|
|
|
|
2007-11-17 19:27:50 +00:00
|
|
|
# regex.c is the GNU regex implementation needed for Windows
|
|
|
|
EXTRA_DIST = regex.c
|
2005-12-29 17:00:57 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
noinst_LIBRARIES = libtagmanager.a
|
2008-10-16 16:57:42 +00:00
|
|
|
|
|
|
|
if USE_INCLUDED_REGEX
|
|
|
|
regex_sources = regex.c
|
|
|
|
else
|
|
|
|
regex_sources =
|
|
|
|
endif
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
libtagmanager_a_SOURCES =\
|
|
|
|
general.h\
|
|
|
|
keyword.h\
|
|
|
|
parsers.h\
|
|
|
|
sort.h\
|
|
|
|
vstring.h\
|
|
|
|
ctags.h\
|
|
|
|
entry.h\
|
|
|
|
get.h\
|
|
|
|
main.h\
|
2009-05-11 14:15:00 +00:00
|
|
|
nestlevel.h\
|
2005-11-22 12:26:26 +00:00
|
|
|
read.h\
|
|
|
|
parse.h\
|
|
|
|
strlist.h\
|
|
|
|
args.c\
|
|
|
|
args.h\
|
2007-06-22 17:34:31 +00:00
|
|
|
basic.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
c.c\
|
2006-01-11 18:50:44 +00:00
|
|
|
conf.c\
|
2006-05-09 16:04:10 +00:00
|
|
|
css.c\
|
2006-10-11 19:45:40 +00:00
|
|
|
diff.c\
|
2006-01-11 18:50:44 +00:00
|
|
|
docbook.c\
|
2006-08-15 17:57:41 +00:00
|
|
|
fortran.c\
|
2007-05-23 12:32:06 +00:00
|
|
|
haskell.c\
|
2007-08-14 11:50:03 +00:00
|
|
|
haxe.c\
|
2008-03-09 18:50:41 +00:00
|
|
|
html.c\
|
2007-01-13 20:16:09 +00:00
|
|
|
js.c\
|
|
|
|
lua.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
make.c\
|
2006-02-22 13:49:08 +00:00
|
|
|
asm.c\
|
2006-05-16 19:04:04 +00:00
|
|
|
latex.c\
|
2007-11-17 19:27:50 +00:00
|
|
|
lregex.c\
|
2008-11-07 14:39:45 +00:00
|
|
|
matlab.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
pascal.c\
|
|
|
|
perl.c\
|
2007-08-14 11:50:03 +00:00
|
|
|
rest.c\
|
2006-05-09 16:04:10 +00:00
|
|
|
ruby.c\
|
2006-02-22 13:49:08 +00:00
|
|
|
sql.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
php.c\
|
|
|
|
python.c\
|
2006-05-16 19:04:04 +00:00
|
|
|
tcl.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
sh.c\
|
2006-11-13 22:11:19 +00:00
|
|
|
vhdl.c\
|
2009-03-13 09:58:27 +00:00
|
|
|
actionscript.c\
|
2009-04-21 20:52:19 +00:00
|
|
|
nsis.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
ctags.c\
|
|
|
|
entry.c\
|
|
|
|
get.c\
|
|
|
|
keyword.c\
|
2009-05-11 14:15:00 +00:00
|
|
|
nestlevel.c\
|
2005-11-22 12:26:26 +00:00
|
|
|
options.h\
|
|
|
|
options.c\
|
|
|
|
parse.c\
|
|
|
|
read.c\
|
|
|
|
sort.c\
|
|
|
|
strlist.c\
|
|
|
|
vstring.c\
|
|
|
|
tm_workspace.c\
|
|
|
|
tm_work_object.c\
|
|
|
|
tm_source_file.c\
|
|
|
|
tm_project.c\
|
|
|
|
tm_tag.c\
|
|
|
|
tm_symbol.c\
|
|
|
|
tm_file_entry.c\
|
2008-10-16 16:57:42 +00:00
|
|
|
tm_tagmanager.c \
|
|
|
|
$(regex_sources)
|
2005-11-22 12:26:26 +00:00
|
|
|
|