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.
This commit is contained in:
Sam Lantinga
2006-06-20 06:39:01 +00:00
parent 9a48decd81
commit e60b21f0e2

View File

@@ -100,8 +100,12 @@ TEST = \
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)