File: Makefile.am

package info (click to toggle)
p4est 1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,500 kB
  • ctags: 4,328
  • sloc: ansic: 65,612; makefile: 695; sh: 403; perl: 206; awk: 40; python: 15
file content (25 lines) | stat: -rw-r--r-- 889 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

if P4EST_ENABLE_BUILD_P6EST
libp4est_installed_headers += \
        example/p6est/p6est.h example/p6est/p6est_ghost.h example/p6est/p6est_lnodes.h \
        example/p6est/p6est_profile.h example/p6est/p6est_vtk.h example/p6est/p6est_io.h \
        example/p6est/p6est_extended.h
libp4est_compiled_sources += \
        example/p6est/p6est.c example/p6est/p6est_ghost.c example/p6est/p6est_lnodes.c \
        example/p6est/p6est_profile.c example/p6est/p6est_vtk.c example/p6est/p6est_io.c
AM_CPPFLAGS += -I@top_srcdir@/example/p6est

p6est_test_programs = example/p6est/test/p6est_test_all

example_p6est_test_p6est_test_all_SOURCES = example/p6est/test/test_all.c
TESTS += $(p6est_test_programs)
check_PROGRAMS += $(p6est_test_programs)

# for now -- make it easier for batch builds
bin_PROGRAMS += $(p6est_test_programs)
endif

clean-local-p6est:
	rm -f *.p6p

.PHONY: clean-local-p6est