forked from stanfordhpccenter/HTR-solver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
93 lines (77 loc) · 2.38 KB
/
Makefile
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Required paths
ifndef LEGION_DIR
$(error LEGION_DIR is not set)
endif
ifndef HTR_DIR
$(error HTR_DIR is not set)
endif
# OS-specific options
ifeq ($(shell uname),Darwin)
DYNLINK_PATH := DYLD_LIBRARY_PATH
else
DYNLINK_PATH := LD_LIBRARY_PATH
endif
# CUDA options
USE_CUDA ?= 1
# HDF options
export USE_HDF ?= 1
export HDF_HEADER ?= hdf5.h
HDF_LIBNAME ?= hdf5
# C compiler options
CFLAGS += -O2 -Wall -Werror -fno-strict-aliasing -I$(LEGION_DIR)/runtime -I$(LEGION_DIR)/bindings/regent
CXXFLAGS += -std=c++11 -O3 -Wall -Werror -fno-strict-aliasing -I$(LEGION_DIR)/runtime -I$(LEGION_DIR)/bindings/regent
# Regent options
export TERRA_PATH := ?.rg;$(HTR_DIR)/src/?.rg
export INCLUDE_PATH := .;$(HTR_DIR)/src/
ifdef HDF_ROOT
export INCLUDE_PATH := $(INCLUDE_PATH);$(HDF_ROOT)/include
export $(DYNLINK_PATH) := $($(DYNLINK_PATH)):$(HDF_ROOT)/lib
endif
REGENT := $(LEGION_DIR)/language/regent.py
REGENT_FLAGS := -fflow 0 -finner 1
ifeq ($(DEBUG), 1)
REGENT_FLAGS += -g -fcuda 0 -fbounds-checks 1
CFLAGS += -g
CXXFLAGS += -g -DBOUNDS_CHECKS -DPRIVILEGE_CHECKS
LINK_FLAGS += -g
else
ifeq ($(USE_CUDA), 1)
REGENT_FLAGS += -fcuda 1 -fcuda-offline 1
NVCC ?= $(CUDA_HOME)/bin/nvcc
NVCCFLAGS += -std=c++11 -O3 -I$(LEGION_DIR)/runtime -I$(LEGION_DIR)/bindings/regent
else
REGENT_FLAGS += -fcuda 0
endif
endif
ifeq ($(USE_OPENMP), 1)
CFLAGS += -fopenmp
CXXFLAGS += -fopenmp
REGENT_FLAGS += -fopenmp 1
else
REGENT_FLAGS += -fopenmp 0
endif
# Link flags
LINK_FLAGS += -L$(LEGION_DIR)/bindings/regent -lregent
ifdef HDF_ROOT
LINK_FLAGS += -L$(HDF_ROOT)/lib
endif
ifeq ($(USE_HDF), 1)
LINK_FLAGS += -l$(HDF_LIBNAME)
endif
LINK_FLAGS += -lm
.PHONY: default all clean
MODULES= $(HTR_DIR)/src/AirMix.rg \
$(HTR_DIR)/src/prometeo_chem.rg
default: chemTest.exec
clean:
$(RM) *.exec *.o
chemTest.exec: chemTest.o $(HTR_DIR)/src/config_schema.o $(HTR_DIR)/src/json.o
$(CXX) -o $@ $^ $(LINK_FLAGS)
chemTest.o: chemTest.rg $(HTR_DIR)/src/config_schema.h $(HTR_DIR)/src/util-desugared.rg $(MODULES)
$(REGENT) chemTest.rg $(REGENT_FLAGS)
$(HTR_DIR)/src/config_schema.o $(HTR_DIR)/src/config_schema.h: $(HTR_DIR)/src/process_schema.rg $(HTR_DIR)/src/config_schema.lua
make -C $(HTR_DIR)/src config_schema.o
json.o json.h: $(HTR_DIR)/src/json.c $(HTR_DIR)/src/json.h
make -C $(HTR_DIR)/src json.o
$(HTR_DIR)/src/util-desugared.rg: $(HTR_DIR)/src/util.rg
make -C $(HTR_DIR)/src util-desugared.rg