medfall

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

commit eeab08619121e582f25ae05fab29b8742b6c9e26
parent d6528975af55e5765e11666558a16ef8d9e2eb9a
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon Dec 26 19:30:33 +0200

Move test_lockfree with the other bins

Diffstat:
Makefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile @@ -12,15 +12,15 @@ sound: audio.o mixer.o log.o memory_arena.o wave.o platform_audio_output.o srv: server/main.o rng/well512.o launcher/launcher: launcher/main.o log.o http.o sha2.o strlcpy.o +test_lockfree: relacy.cc + $(CXX) relacy.cc -o test_lockfree $(CXXFLAGS) $(LDFLAGS) -std=c++98 -fexceptions -frtti -Wno-missing-field-initializers + # 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 +hm.so: hm.o heightmap.o terrain_manager.o lz4.o btt.o gpubtt.o skybox.o http.o rng/well512.o btt.so: mod_btt.o btt.o gpubtt.o heightmap.o skybox.o stb_image.o lz4.o sm.so: shadow_map.o -test_lockfree: relacy.cc - $(CXX) relacy.cc -o test_lockfree $(CXXFLAGS) $(LDFLAGS) -std=c++98 -fexceptions -frtti -Wno-missing-field-initializers - # Special CXXFLAGS lz4.o: CXXFLAGS += -O3 lz4hc.o: CXXFLAGS += -O3