Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed some dependency issues with SDL_revision.h
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 4, 2009
1 parent 9949283 commit 4c39556
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
7 changes: 2 additions & 5 deletions Makefile.in
Expand Up @@ -35,7 +35,6 @@ WINDRES = @WINDRES@
TARGET = libSDL.la
SOURCES = @SOURCES@
OBJECTS = @OBJECTS@
REVISION = $(srcdir)/include/SDL_revision.h

SDLMAIN_TARGET = libSDLmain.a
SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
Expand All @@ -51,7 +50,7 @@ LT_RELEASE = @LT_RELEASE@
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"
Expand All @@ -67,8 +66,6 @@ $(objects):
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)" \
Expand All @@ -81,7 +78,7 @@ depend:

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)
Expand Down
2 changes: 1 addition & 1 deletion src/SDL_fatal.c
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/audio/SDL_audio.c
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -23,7 +23,6 @@

/* CPU feature detection for SDL */

#include "SDL.h"
#include "SDL_cpuinfo.h"

#if defined(__MACOSX__) && defined(__ppc__)
Expand Down
2 changes: 2 additions & 0 deletions src/events/SDL_events.c
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -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"
Expand Down

0 comments on commit 4c39556

Please sign in to comment.