diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2011-02-27 13:00:21 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2011-02-27 13:00:21 +0100 |
commit | d65f8720c5876d0a21ae69855e74b97389224906 (patch) | |
tree | 671c12a714511003bbe1d614ec3653c436faddc0 /Makefile | |
parent | c225eea4edfb8cf8ede845cc6f9b7e858aabe6e8 (diff) | |
download | pianobar-windows-d65f8720c5876d0a21ae69855e74b97389224906.tar.gz pianobar-windows-d65f8720c5876d0a21ae69855e74b97389224906.tar.bz2 pianobar-windows-d65f8720c5876d0a21ae69855e74b97389224906.zip |
Use `c99`
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,8 @@ PREFIX:=/usr/local BINDIR:=${PREFIX}/bin LIBDIR:=${PREFIX}/lib MANDIR:=${PREFIX}/share/man -CFLAGS:=-std=c99 -O2 -DNDEBUG +CFLAGS:=-O2 -DNDEBUG +CC:=c99 PIANOBAR_DIR=src PIANOBAR_SRC=\ @@ -118,7 +119,7 @@ clean: all: pianobar libpiano debug: pianobar -debug: CFLAGS=-Wall -pedantic -std=c99 -ggdb +debug: CFLAGS=-Wall -pedantic -ggdb install: pianobar install -d ${DESTDIR}/${BINDIR}/ |