1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: patch upstream Makefile
Add DEB_CFLAGS to CFLAGS.
.
The person named in the Author field signed this changelog entry.
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2011-09-04
--- bugsquish-0.0.6.orig/Makefile
+++ bugsquish-0.0.6/Makefile
@@ -18,11 +18,9 @@ DATA_PREFIX=/usr/share/bugsquish/
TARGET=bugsquish
TARGET_DEF=LINUX
-
-CFLAGS=-Wall -O2 $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \
+CFLAGS= $(DEB_CFLAGS) $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \
-D$(NOSOUNDFLAG) -D$(TARGET_DEF)
-
# Other definitions:
MIXER=-lSDL_mixer
|