File: makefile

package info (click to toggle)
bugsquish 0.0.6-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,632 kB
  • sloc: ansic: 1,546; makefile: 145; sh: 55
file content (22 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (5)
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