summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-arcade/rotategear/files/rotategear-105-makefile.patch')
-rw-r--r--games-arcade/rotategear/files/rotategear-105-makefile.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/games-arcade/rotategear/files/rotategear-105-makefile.patch b/games-arcade/rotategear/files/rotategear-105-makefile.patch
deleted file mode 100644
index 9dda65b..0000000
--- a/games-arcade/rotategear/files/rotategear-105-makefile.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff -Naur src/Makefile src/Makefile
---- src/Makefile 2008-05-14 03:08:04.000000000 +0200
-+++ src/Makefile 2009-10-19 14:59:05.000000000 +0200
-@@ -5,14 +5,14 @@
- CFLAGS = $(DEFAULT_CFLAGS)
- CXXFLAGS = $(DEFAULT_CFLAGS)
- #LDFLAGS = `sdl-config --libs`
--LDFLAGS = -L/usr/local/mingw32/lib -logg -lvorbis -lvorbisenc -lvorbisfile -lsmpeg -lmingw32 -lSDL_gfx -lSDL_mixer -lSDLmain -lSDL -mwindows -mno-cygwin
-+LDFLAGS = -lSDL_gfx -lSDL_mixer
-
- OBJS = ram.o util_snd.o function.o dconv.o scene.o title.o init.o act.o option.o ending.o logo.o stageselect.o demo.o
-
- SOURCES = $(patsubst %.o, %.c, $(OBJS))
-
- ifeq ($(wildcard .depend),.depend)
--do-it-all: RotateGear
-+do-it-all: ../rotategear
- include .depend
- else
- do-it-all: depend recursive
-@@ -28,5 +28,5 @@
- clean:
- $(RM) $(OBJS) *~ .depend RotateGear.exe
-
--RotateGear: $(OBJS)
-+../rotategear: $(OBJS)
- $(CXX) -o $@ $(OBJS) $(LDFLAGS)