medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 110d11645dae96e1e6a6c1c310d906d69c090dc7
parent eeab08619121e582f25ae05fab29b8742b6c9e26
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon Dec 26 19:31:05 +0200

Profiler RNG should be a common object

Diffstat:
Makefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -17,7 +17,7 @@ test_lockfree: relacy.cc # Module dependencies bsp.so: bsp.o bsp_renderer.o -hm.so: hm.o heightmap.o terrain_manager.o lz4.o btt.o gpubtt.o skybox.o http.o rng/well512.o +hm.so: hm.o heightmap.o terrain_manager.o lz4.o btt.o gpubtt.o skybox.o http.o btt.so: mod_btt.o btt.o gpubtt.o heightmap.o skybox.o stb_image.o lz4.o sm.so: shadow_map.o @@ -30,7 +30,7 @@ xxhash.o: CXXFLAGS += -O3 visitors/linear_algebra.h: linear_algebra.h # Common dependencies -COMMON_OBJS := log.o memory_arena.o work_queue.o immediate.o profiler.o text_renderer.o stb_truetype.o renderer.o strlcpy.o stats.o +COMMON_OBJS := log.o memory_arena.o work_queue.o immediate.o profiler.o text_renderer.o stb_truetype.o renderer.o strlcpy.o stats.o rng/well512.o # Compiler flags WARNINGS := -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -Wconversion -Wshadow -Wcast-align -Wstrict-overflow -Werror=switch-enum