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 30 31 32 33 34 35 36 37 38
|
# This file is part of p4est.
# Makefile.am in example/particles
# included non-recursively from toplevel directory
if P4EST_ENABLE_BUILD_2D
bin_PROGRAMS += \
example/particles/p4est_particles
example_particles_p4est_particles_SOURCES = \
example/particles/particles_global.h \
example/particles/particles2.c
LINT_CSOURCES += $(example_particles_p4est_particles_SOURCES)
endif
if P4EST_ENABLE_BUILD_3D
bin_PROGRAMS += \
example/particles/p8est_particles
example_particles_p8est_particles_SOURCES = \
example/particles/particles_global.h \
example/particles/particles3.c
LINT_CSOURCES += $(example_particles_p8est_particles_SOURCES)
endif
## from example/steps for future reference
##
## EXTRA_DIST +=
##
## dist_p4estdata_DATA += \
## example/particles/hole_2d_cubit.inp \
## example/particles/hole_2d_cubit.jou \
## example/particles/hole_3d_cubit.inp \
## example/particles/hole_3d_cubit.jou \
## example/particles/hole_2d_gmsh.inp \
## example/particles/hole_2d_gmsh.geo \
## example/particles/hole_3d_gmsh.inp \
## example/particles/hole_3d_gmsh.geo
|