From: Charles McGarvey Date: Sun, 13 Dec 2009 05:15:40 +0000 (-0700) Subject: no need to rebuild version.c every time X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=commitdiff_plain;h=a723e23ca2d32e8eed32f9c53323afbbedba575b;hp=6a5d12788f2778a26223de690d34b00ac16a6ec3 no need to rebuild version.c every time --- diff --git a/configure.ac b/configure.ac index dc29d61..7ee82d3 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ AC_CANONICAL_TARGET AC_CONFIG_SRCDIR([src/GameLayer.cc]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([subdir-objects]) +AM_INIT_AUTOMAKE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) diff --git a/doc/yoink.6.in b/doc/yoink.6.in index 5822f29..fd00dad 100644 --- a/doc/yoink.6.in +++ b/doc/yoink.6.in @@ -203,6 +203,12 @@ but that's probably better than choppy animation. 3. Decrease the timestep. You can set the \fBtimestep\fP to be as low as the your \fBmaxfps\fP option. Remember the trade-off here is decreased simulation accuracy. +.PP +If you are having audio problems, you may need to upgrade OpenAL. Some +systems still provide an old, busted version of OpenAL which may result in +stuttering, lag, and other oddities. See about installing a recent version +of openal-soft, a high-quality software implementation that is still being +maintained. .SH BUGS .IP \(bu 3 The robots are currently lacking in intelligence. diff --git a/src/Makefile.am b/src/Makefile.am index e2ea2fe..766d4ce 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -113,7 +113,7 @@ yoink_SOURCES = \ if WIN32 yoink_SOURCES += yoink.rc yoink.ico .rc.o: - @WINDRES@ -o $@ -i $< + $(AM_V_GEN) $(WINDRES) -o $@ -i $< endif yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof @@ -128,6 +128,3 @@ run: all debug: all $(YOINK_ENVIRONMENT) gdb ./yoink -all-local: # always rebuild version.c - @touch version.c -