Skip to content

Commit

Permalink
Date: Thu, 15 Jun 2006 14:19:47 +0200 (CEST)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
slouken committed Jun 20, 2006
1 parent a4ce66a commit de92ae7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Makefile.dc
Expand Up @@ -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)

0 comments on commit de92ae7

Please sign in to comment.