File: Makefile.am

package info (click to toggle)
anjuta 2%3A2.32.0.0-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 61,524 kB
  • ctags: 29,402
  • sloc: ansic: 207,516; xml: 31,169; cpp: 11,403; sh: 10,749; perl: 7,107; makefile: 3,373; yacc: 1,018; lex: 126; sql: 97; python: 91; java: 6
file content (44 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download | duplicates (2)
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
## Process this file with automake to produce Makefile.in

## Created by Anjuta

AM_CPPFLAGS = \
	-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
	-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
	$(DEPRECATED_FLAGS) \
	$(LIBANJUTA_CFLAGS) \
	$(EXTRA_CFLAGS) \
	-DG_LOG_DOMAIN=\"cxxparser\"

noinst_LTLIBRARIES = libcxxparser.la

libcxxparser_la_SOURCES = \
        expression-lexer.cpp \
        expression-parser.cpp \
        expression-result.cpp \
        expression-result.h \
        flex-lexer-klass.cpp \
        flex-lexer-klass.h \
        flex-lexer-klass-tab.h \
        flex-lexer-plain.cpp \
        flex-lexer-plain-tab.h \
        variable-parser.cpp \
        variable-result.cpp \
        variable-result.h \
        scope-parser.cpp \
        function-result.cpp \
        function-result.h \
        function-parser.cpp \
        cpp-flex-tokenizer.cpp \
        cpp-flex-tokenizer.h \
        expression-parser.h \
        engine-parser.cpp \
        engine-parser-priv.h \
        engine-parser.h \
        scope-parser.h \
        variable-parser.h \
        function-parser.h
 
libcxxparser_la_LIBADD = $(LIBANJUTA_LIBS) \
	$(GTHREAD_LIBS)
libcxxparser_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)