File: Makefile.am

package info (click to toggle)
p4est 2.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,536 kB
  • sloc: ansic: 87,528; makefile: 855; sh: 635; perl: 272; python: 226; awk: 40; javascript: 23
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/simple
# included non-recursively from toplevel directory

if P4EST_ENABLE_BUILD_2D
bin_PROGRAMS += example/simple/p4est_simple
example_simple_p4est_simple_SOURCES = example/simple/simple2.c

LINT_CSOURCES += $(example_simple_p4est_simple_SOURCES)
endif

if P4EST_ENABLE_BUILD_3D
bin_PROGRAMS += example/simple/p8est_simple
example_simple_p8est_simple_SOURCES = example/simple/simple3.c

LINT_CSOURCES += $(example_simple_p8est_simple_SOURCES)
endif