-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathMakefile
50 lines (37 loc) · 1.7 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
#######################################################
# Include standard variables
#######################################################
include $(HTR_DIR)/Makefile.in
######################################################
# Rules
######################################################
.PHONY: default all clean force
default: cflTest.exec
######################################################
# Objects
######################################################
MODULES= $(HTR_DIR)/src/prometeo_mixture.rg \
$(HTR_DIR)/src/prometeo_cfl.rg
######################################################
# Recipes
######################################################
clean:
$(RM) *.exec *.o *.a
cflTest.exec: cflTest.o registrar.o libtest.a
$(CXX) -o $@ $^ $(LINK_FLAGS)
cflTest.o: cflTest.rg $(HTR_DIR)/src/config_schema.h $(HTR_DIR)/src/Utils/util.rg $(MODULES)
EOS="ConstPropMix" $(REGENT) $(REGENT_OPTS) cflTest.rg $(REGENT_FLAGS)
libtest.a: $(HTR_DIR)/src/prometeo_ConstPropMix_cpu.a \
$(if $(filter $(strip $(USE_CUDA)), 1), $(HTR_DIR)/src/prometeo_ConstPropMix_gpu.a)
$(AR) rcT $@ $^
registrar.o: registrar.cc registrar.h $(HTR_DIR)/src/prometeo_cfl.h $(HTR_DIR)/src/prometeo_mixture.h
$(call getRecipe)
$(CXX) $(CXX_FLAGS) -c -o $@ $<
$(HTR_DIR)/src/prometeo_ConstPropMix_cpu.a: force
$(MAKE) -C $(HTR_DIR)/src prometeo_ConstPropMix_cpu.a
$(HTR_DIR)/src/prometeo_ConstPropMix_gpu.a: force
$(MAKE) -C $(HTR_DIR)/src prometeo_ConstPropMix_gpu.a
$(HTR_DIR)/src/config_schema.o $(HTR_DIR)/src/config_schema.h: $(HTR_DIR)/src/Utils/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