File: Makefile.am

package info (click to toggle)
libixion 0.20.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,472 kB
  • sloc: cpp: 21,273; sh: 4,561; makefile: 463; python: 297
file content (29 lines) | stat: -rw-r--r-- 665 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

AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	$(MDDS_CFLAGS) $(LIBIXION_CFLAGS) \
	-DSRCDIR=\""$(top_srcdir)"\"

bin_PROGRAMS =

EXTRA_PROGRAMS = \
	document-simple \
	model-context-simple \
	cell-access

document_simple_SOURCES = document_simple.cpp
document_simple_LDADD = ../src/libixion/libixion-@IXION_API_VERSION@.la

model_context_simple_SOURCES = model_context_simple.cpp
model_context_simple_LDADD = ../src/libixion/libixion-@IXION_API_VERSION@.la

cell_access_SOURCES = cell_access.cpp
cell_access_LDADD = ../src/libixion/libixion-@IXION_API_VERSION@.la

TESTS = \
	document-simple \
	model-context-simple \
	cell-access

distclean-local:
	rm -rf $(TESTS)