~ubuntu-branches/ubuntu/natty/geany/natty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
## Process this file with automake to produce Makefile.in
# $Id: Makefile.am 3106 2008-10-16 16:57:42Z eht16 $

SUBDIRS = include
INCLUDES = -I$(srcdir)/include $(GTK_CFLAGS)
#	-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED \
#	-DGDK_PIXBUF_DEPRECATED \
#	-DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED

# regex.c is the GNU regex implementation needed for Windows
EXTRA_DIST = regex.c

noinst_LIBRARIES = libtagmanager.a

if USE_INCLUDED_REGEX
regex_sources = regex.c
else
regex_sources =
endif

libtagmanager_a_SOURCES =\
	general.h\
	keyword.h\
	parsers.h\
	sort.h\
	vstring.h\
	ctags.h\
	entry.h\
	get.h\
	main.h\
	read.h\
	parse.h\
	strlist.h\
	args.c\
	args.h\
	basic.c\
	c.c\
	conf.c\
	css.c\
	diff.c\
	docbook.c\
	fortran.c\
	haskell.c\
	haxe.c\
	html.c\
	js.c\
	lua.c\
	make.c\
	asm.c\
	latex.c\
	lregex.c\
	pascal.c\
	perl.c\
	rest.c\
	ruby.c\
	sql.c\
	php.c\
	python.c\
	tcl.c\
	sh.c\
	vhdl.c\
	ctags.c\
	entry.c\
	get.c\
	keyword.c\
	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\
	tm_tagmanager.c \
	$(regex_sources)