-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (21 loc) · 711 Bytes
/
Copy pathMakefile
File metadata and controls
30 lines (21 loc) · 711 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
28
29
30
compiler = clang++-5.0
warning_flags = -Wall -Wconversion -Wno-missing-braces -Wno-sign-conversion -Wno-writable-strings -Wno-unused-variable #-Wdouble-promotion
linker_flags = -lGLEW -lGL `sdl2-config --cflags --libs` -lm -lSDL2_image -lSDL2_ttf
all:
@$(compiler) $(warning_flags) -g -mavx -D USE_DEBUG_PROFILING -std=c++11 linux/*.cpp *.cpp linear_math/*.cpp -o engine $(linker_flags)
@./engine
plot:
@python3 plot_measurements.py
models:
./_build.sh
./builder/builder ./data/models_actors/conference.obj ./data/built/conference --model --scale 0.0035
animations:
./clean_anims_actors.sh
make mixamo
make cmu
raw_mocap:
./build_raw_mocap.sh
mixamo:
./build_mixamo.sh
cmu:
./build_cmu.sh