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 (18 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

# This file is part of p4est.
# Makefile.am in example/points
# included non-recursively from toplevel directory

if P4EST_ENABLE_BUILD_2D
bin_PROGRAMS += example/points/p4est_points
example_points_p4est_points_SOURCES = example/points/points2.c

LINT_CSOURCES += $(example_points_p4est_points_SOURCES)
endif

if P4EST_ENABLE_BUILD_3D
bin_PROGRAMS += example/points/p8est_points
example_points_p8est_points_SOURCES = example/points/points3.c

LINT_CSOURCES += $(example_points_p8est_points_SOURCES)
endif