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

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 d17c1b8 commit f318baf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Makefile.dc
Expand Up @@ -101,8 +101,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 f318baf

Please sign in to comment.