File: Makefile.am

package info (click to toggle)
libgda5 5.2.10-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76,168 kB
  • sloc: ansic: 495,319; xml: 10,486; yacc: 5,165; sh: 4,451; makefile: 4,095; php: 1,416; java: 1,300; javascript: 1,298; python: 896; sql: 879; perl: 116
file content (34 lines) | stat: -rw-r--r-- 894 bytes parent folder | download | duplicates (8)
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
noinst_LTLIBRARIES = libgda-report-engine-5.0.la
noinst_PROGRAMS = test-rt-parser

AM_CPPFLAGS = \
	-I$(top_builddir)/libgda-report \
	-I$(top_srcdir)/libgda-report \
	-I$(top_builddir) \
	-I$(top_srcdir) \
	-I$(top_srcdir)/libgda \
	-I$(top_srcdir)/libgda/sqlite \
	-I$(top_builddir)/libgda/sqlite \
	$(COREDEPS_CFLAGS) \
	$(GDKPIXBUF_CFLAGS) \
	$(COREDEPS_WFLAGS)

gda_report_headers = \
	gda-report-engine.h

libgda_report_engine_5_0_la_SOURCES =	\
	$(gda_report_headers)	\
	rt-parser.h \
	rt-parser.c \
	gda-report-engine.c	

libgda_report_engine_5_0_la_LIBADD = $(COREDEPS_LIBS) \
	$(top_builddir)/libgda/libgda-5.0.la 

test_rt_parser_SOURCES = \
	test-rt-parser.c

test_rt_parser_LDADD = libgda-report-engine-5.0.la $(GDKPIXBUF_LIBS)

gdareportincludedir=$(includedir)/libgda-$(GDA_ABI_MAJOR_VERSION).$(GDA_ABI_MINOR_VERSION)/libgda-report
gdareportinclude_HEADERS=$(gda_report_headers)