changeset 1694:7b19e09f5481 SDL-1.3

Date: Thu, 15 Jun 2006 14:19:47 +0200 (CEST) From: "Torsten Giebl" Subject: [SDL] Patch for Makefile.DC Hello ! This patch autom. copys SDL_config.h.default into SDL_config.h when compiling SDL for Dreamcast using Makefile.dc.
author Sam Lantinga <slouken@libsdl.org>
date Tue, 20 Jun 2006 06:41:15 +0000
parents 504cb581ae1c
children 7179cb72dbba
files Makefile.dc
diffstat 1 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.dc	Tue Jun 20 05:57:50 2006 +0000
+++ b/Makefile.dc	Tue Jun 20 06:41:15 2006 +0000
@@ -101,8 +101,12 @@
 	test/threadwin.c \
 	test/torturethread.c \
 
-$(TARGET): $(OBJS)
-	$(AR) rcs $(TARGET) $(OBJS)
+$(TARGET): copy_config \
+	$(OBJS)
+	$(AR) rcs $(TARGET) $(OBJS) 
+
+copy_config:
+	@cp include/SDL_config.h.default include/SDL_config.h
 
 clean:
-	rm -f $(OBJS)
+	rm -f include/SDL_config.h $(OBJS)