File: Makefile.am

package info (click to toggle)
dune-grid 2.3.1-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 9,088 kB
  • sloc: cpp: 82,062; makefile: 1,262; ansic: 265; perl: 191; sh: 2
file content (23 lines) | stat: -rw-r--r-- 556 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
EXTRA_DIST = CMakeLists.txt
check_PROGRAMS =

TESTS =

GRIDDIM=2

if ALBERTA
# test program will return the special exit code 77 ("skipped") if alberta is
# not available
#TESTS += test-alberta3d-refine
check_PROGRAMS += test-alberta3d-refine
test_alberta3d_refine_SOURCES = test-alberta3d-refine.cc
test_alberta3d_refine_CPPFLAGS = $(AM_CPPFLAGS)		\
	$(ALBERTA3D_CPPFLAGS)
test_alberta3d_refine_LDFLAGS = $(AM_LDFLAGS)	\
	$(ALBERTA3D_LDFLAGS)
test_alberta3d_refine_LDADD =			\
	$(ALBERTA3D_LIBS)			\
	$(LDADD)
endif

include $(top_srcdir)/am/global-rules