From 3c77cf036e90ee9efb428e44c46f07b042a92edb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 12 Mar 2004 05:28:02 +0000 Subject: [PATCH] update --- stepmania/src/Makefile.am | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Makefile.am b/stepmania/src/Makefile.am index fe170d6227..c87c464817 100644 --- a/stepmania/src/Makefile.am +++ b/stepmania/src/Makefile.am @@ -1,6 +1,6 @@ bin_PROGRAMS = stepmania if BUILD_TESTS -bin_PROGRAMS += test_audio_readers test_file_readers test_timing_data +bin_PROGRAMS += test_audio_readers test_file_readers test_timing_data test_threads endif AM_LDFLAGS = @@ -133,7 +133,10 @@ ArchUtils = archutils/Unix/SignalHandler.cpp archutils/Unix/SignalHandler.h \ if USE_CRASH_HANDLER ArchUtils += archutils/Unix/CrashHandler.cpp archutils/Unix/CrashHandler.h \ - archutils/Unix/CrashHandlerChild.cpp archutils/Unix/CrashHandlerInternal.h + archutils/Unix/CrashHandlerChild.cpp archutils/Unix/CrashHandlerInternal.h \ + archutils/Unix/Backtrace.cpp archutils/Unix/Backtrace.h \ + archutils/Unix/BacktraceNames.cpp archutils/Unix/BacktraceNames.h \ + archutils/Unix/LinuxThreadHelpers.cpp archutils/Unix/LinuxThreadHelpers.h endif Arch = $(LoadingWindow) $(Sound) $(ArchHooks) $(InputHandler) $(MovieTexture) $(Lights) $(MemoryCard) $(LowLevelWindow) $(ArchUtils) \ @@ -248,6 +251,7 @@ all_test_SOURCES = \ PrefsManager.cpp PrefsManager.h \ arch/ArchHooks/ArchHooks.cpp arch/ArchHooks/ArchHooks.h \ IniFile.cpp IniFile.h \ + $(ArchUtils) \ $(PCRE) test_audio_readers_SOURCES = $(all_test_SOURCES) \ @@ -274,6 +278,9 @@ test_file_readers_LDADD = \ test_timing_data_SOURCES = $(all_test_SOURCES) \ tests/test_timing_data.cpp TimingData.cpp TimingData.h +test_threads_SOURCES = $(all_test_SOURCES) \ + tests/test_threads.cpp + INCLUDES = $(SDL_CFLAGS) $(LUA_CFLAGS) if HAVE_GTK