forked from DLR-AMR/t8code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.t8.pre.in
More file actions
27 lines (21 loc) · 755 Bytes
/
Makefile.t8.pre.in
File metadata and controls
27 lines (21 loc) · 755 Bytes
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
# This file is part of t8code
# Use `include /path/to/Makefile.t8.mk' in your Makefile
# to use T8 in your project without autotools
prefix = @prefix@
exec_prefix = @exec_prefix@
t8_sysconfdir = @sysconfdir@
@T8_SC_MK_INCLUDE@
@T8_P4EST_MK_INCLUDE@
# T8_CC and T8_CFLAGS may not be necessary for your project
T8_CC = @CC@
T8_CFLAGS = @CFLAGS@
# These pull in T8 but none of its dependencies
T8_PKG_CPPFLAGS = -I@includedir@
T8_PKG_LDFLAGS = -L@libdir@
T8_PKG_LIBS = -lt8
# These pull in everything needed by t8
T8_CPPFLAGS = @CPPFLAGS@ \
$(SC_PKG_CPPFLAGS) $(P4EST_PKG_CPPFLAGS) $(T8_PKG_CPPFLAGS)
T8_LDFLAGS = @LDFLAGS@ \
$(SC_PKG_LDFLAGS) $(P4EST_PKG_LDFLAGS) $(T8_PKG_LDFLAGS)
T8_LIBS = $(T8_PKG_LIBS) $(P4EST_PKG_LIBS) $(SC_PKG_LIBS) @LIBS@