You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-arcade/retrobattle/files/retrobattle-1.0.0-build.patch

31 lines
734 B

Author: hasufell <hasufell@gentoo.org>
Date: Sat Aug 4 12:15:53 2012 +0200
respect CXX, CFLAGS and LDFLAGS
--- src/Makefile
+++ src/Makefile
@@ -1,10 +1,10 @@
-CFLAGS = `sdl-config --cflags` -g -Wall -I. -DENABLE_BINRELOC
-CPPFLAGS = $(CFLAGS)
+CXXFLAGS += $(shell sdl-config --cflags) -I.
+CPPFLAGS += -DENABLE_BINRELOC
# Uncomment the first LIBS line and comment out the other LIBS line to
# compile without SDL_Mixer
#LIBS = `sdl-config --libs`
-LIBS = `sdl-config --libs` -lSDL_mixer
+LIBS = $(shell sdl-config --libs) -lSDL_mixer
RETROINSTALLDIR ?= /opt
@@ -25,7 +25,7 @@
retrobattle: $(RETRO)
- g++ -o $@ $^ $(LIBS)
+ $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
mv $@ ..
clean: