Skip to content

Commit

Permalink
Allow build flags to be overridden by make process
Browse files Browse the repository at this point in the history
Required to enable Debian buildi hardening:
https://wiki.debian.org/Hardening

Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
  • Loading branch information
jmccrohan committed Feb 20, 2014
1 parent 57ee019 commit fffcb12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
OBJECTS = nyancat.o

CFLAGS=-g
CC ?=
CFLAGS ?= -g
CPPFLAGS ?=
LDFLAGS ?=

all: nyancat

Expand Down

0 comments on commit fffcb12

Please sign in to comment.