changeset 2984:0b160c970b7e

Fixed some dependency issues with SDL_revision.h
author Sam Lantinga <slouken@libsdl.org>
date Sun, 04 Jan 2009 05:41:52 +0000
parents 388c5a2daeac
children 4e4d814884aa
files Makefile.in src/SDL_fatal.c src/audio/SDL_audio.c src/cpuinfo/SDL_cpuinfo.c src/events/SDL_events.c src/video/SDL_video.c
diffstat 6 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Sun Jan 04 05:27:13 2009 +0000
+++ b/Makefile.in	Sun Jan 04 05:41:52 2009 +0000
@@ -35,7 +35,6 @@
 TARGET  = libSDL.la
 SOURCES = @SOURCES@
 OBJECTS = @OBJECTS@
-REVISION = $(srcdir)/include/SDL_revision.h
 
 SDLMAIN_TARGET = libSDLmain.a
 SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
@@ -51,7 +50,7 @@
 LT_REVISION = @LT_REVISION@
 LT_LDFLAGS  = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
 
-all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
+all: $(srcdir)/configure Makefile $(objects) update-revision $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
 
 $(srcdir)/configure: $(srcdir)/configure.in
 	@echo "Warning, configure.in is out of date"
@@ -67,8 +66,6 @@
 update-revision:
 	$(SHELL) $(auxdir)/updaterev.sh
 
-$(REVISION): update-revision
-
 .PHONY: all update-revision depend install install-bin install-hdrs install-lib install-data install-man uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man clean distclean dist
 depend:
 	@SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \
@@ -81,7 +78,7 @@
 
 include $(depend)
 
-$(objects)/$(TARGET): $(REVISION) $(OBJECTS)
+$(objects)/$(TARGET): $(OBJECTS)
 	$(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
 
 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
--- a/src/SDL_fatal.c	Sun Jan 04 05:27:13 2009 +0000
+++ b/src/SDL_fatal.c	Sun Jan 04 05:41:52 2009 +0000
@@ -27,7 +27,7 @@
 
 #include <signal.h>
 
-#include "SDL.h"
+#include "SDL_stdinc.h"
 #include "SDL_fatal.h"
 
 /* This installs some signal handlers for the more common fatal signals,
--- a/src/audio/SDL_audio.c	Sun Jan 04 05:27:13 2009 +0000
+++ b/src/audio/SDL_audio.c	Sun Jan 04 05:41:52 2009 +0000
@@ -24,6 +24,7 @@
 /* Allow access to a raw mixing buffer */
 
 #include "SDL.h"
+#include "SDL_audio.h"
 #include "SDL_audio_c.h"
 #include "SDL_audiomem.h"
 #include "SDL_sysaudio.h"
--- a/src/cpuinfo/SDL_cpuinfo.c	Sun Jan 04 05:27:13 2009 +0000
+++ b/src/cpuinfo/SDL_cpuinfo.c	Sun Jan 04 05:41:52 2009 +0000
@@ -23,7 +23,6 @@
 
 /* CPU feature detection for SDL */
 
-#include "SDL.h"
 #include "SDL_cpuinfo.h"
 
 #if defined(__MACOSX__) && defined(__ppc__)
--- a/src/events/SDL_events.c	Sun Jan 04 05:27:13 2009 +0000
+++ b/src/events/SDL_events.c	Sun Jan 04 05:41:52 2009 +0000
@@ -24,7 +24,9 @@
 /* General event handling code for SDL */
 
 #include "SDL.h"
+#include "SDL_events.h"
 #include "SDL_syswm.h"
+#include "SDL_thread.h"
 #include "SDL_sysevents.h"
 #include "SDL_events_c.h"
 #include "../timer/SDL_timer_c.h"
--- a/src/video/SDL_video.c	Sun Jan 04 05:27:13 2009 +0000
+++ b/src/video/SDL_video.c	Sun Jan 04 05:41:52 2009 +0000
@@ -23,7 +23,7 @@
 
 /* The high-level video driver subsystem */
 
-#include "SDL.h"
+#include "SDL_video.h"
 #include "SDL_sysvideo.h"
 #include "SDL_blit.h"
 #include "SDL_pixels_c.h"