summaryrefslogtreecommitdiff
path: root/games/sdlquake2/files/patch-Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'games/sdlquake2/files/patch-Makefile')
-rw-r--r--games/sdlquake2/files/patch-Makefile59
1 files changed, 0 insertions, 59 deletions
diff --git a/games/sdlquake2/files/patch-Makefile b/games/sdlquake2/files/patch-Makefile
deleted file mode 100644
index 202e3e56667d..000000000000
--- a/games/sdlquake2/files/patch-Makefile
+++ /dev/null
@@ -1,59 +0,0 @@
---- Makefile.orig Thu May 19 17:56:13 2005
-+++ Makefile Sat Jul 22 16:05:33 2006
-@@ -1,9 +1,34 @@
--CC:=gcc
--CFLAGS:=-O3 -ffast-math -march=athlon-xp -g -Wall $(shell sdl-config --cflags)
-+CC?=gcc
-+SDL_CONFIG?=sdl-config
-+LOCALBASE?=/usr/local
-+LOCALBASE?=/usr/X11R6
-+CFLAGS+=-O3 -ffast-math -DDATADIR='"$(Q2DIR)"' -DLIBDIR='"$(LIBDIR)"' $(shell $(SDL_CONFIG) --cflags) -I$(LOCALBASE)/include
-+
-+LIBS=-lm -lz
-+
-+ifeq ($(shell uname),Linux)
-+LIBS+=-ldl
-+endif
-+
-+ifeq ($(shell uname),FreeBSD)
-+LIBS+=-L$(LOCALBASE)/lib -lexecinfo
-+endif
-
- GAMES:=baseq2
-
--TARGETS:=quake2 q2ded ref_sdlgl.so $(foreach game, $(GAMES), $(game)/game.so)
-+TARGETS:=
-+
-+ifeq ($(strip $(BUILD_CLIENT)),YES)
-+TARGETS+=quake2 ref_sdlgl.so
-+endif
-+
-+ifeq ($(strip $(BUILD_DEDICATED)),YES)
-+TARGETS+=q2ded
-+endif
-+
-+ifeq ($(strip $(BUILD_GAME)),YES)
-+TARGETS+=$(foreach game, $(GAMES), $(game)/game.so)
-+endif
-
- .PHONY: default all clean distclean
-
-@@ -43,15 +68,14 @@
- @sed "s@^\(.*\)\.o:@$(dir $*)\1.o:@" < .depends/$*.d > .depends/$*.d.new
- @mv .depends/$*.d.new .depends/$*.d
-
--
- quake2: $(quake2_OBJ)
-- $(CC) -g -o $@ $(shell sdl-config --libs) -lz -ldl $^
-+ $(CC) -g -o $@ $(shell $(SDL_CONFIG) --libs) $(LIBS) $^
-
- q2ded: $(q2ded_OBJ)
-- $(CC) -g -o $@ $^ -lz -ldl
-+ $(CC) -g -o $@ $^ $(LIBS)
-
- ref_sdlgl.so: $(sdlgl_OBJ)
-- $(CC) -shared -g -o $@ $(shell sdl-config --libs) -lGL -ljpeg -lpng12 $^
-+ $(CC) -shared -g -o $@ $(shell $(SDL_CONFIG) --libs) -L$(LOCALBASE)/lib -lGL -ljpeg -lpng $^
-
- ALLOBJ:=$(quake2_OBJ) $(sdlgl_OBJ)
-