File: Makefile.am

package info (click to toggle)
libgda2 1.2.4-1.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 13,724 kB
  • ctags: 6,979
  • sloc: ansic: 47,166; xml: 19,896; sh: 8,797; makefile: 863; yacc: 202; lex: 129; cpp: 73
file content (36 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (3)
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
if BUILD_CONFIG_TOOL
CONFIG_TOOL=gda-config-tool
man_MANS = gda-config-tool.1 \
           gda-config.5
else
CONFIG_TOOL=
endif

if BUILD_RUN_TOOL
RUN_TOOL=gda-run
else
RUN_TOOL=
endif

bin_PROGRAMS = $(RUN_TOOL) $(CONFIG_TOOL)

AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-I$(top_builddir) \
	-I. \
	$(LIBGDA_CFLAGS)

gda_run_SOURCES = gda-run.c
gda_run_LDADD = \
	$(top_builddir)/libgda/libgda-2.la \
	$(LIBGDA_LIBS)

gda_config_tool_SOURCES = gda-config-tool.c
gda_config_tool_LDADD = \
	$(top_builddir)/libgda/libgda-2.la \
	$(READLINE_LIB) \
	$(HISTORY_LIB) \
	$(POPT_LIB) \
	$(LIBGDA_LIBS)

EXTRA_DIST = gda-config-tool.1 gda-config.5