aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-07 21:59:34 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-07 21:59:34 +0100
commit2aa3a2cbe7667ade5903c18d6719cf54cfaceb9e (patch)
treea2eee84eb8248ff9705be547225c6d895bd6100f /Makefile
parentdeps: alloca (diff)
downloadscrotty-2aa3a2cbe7667ade5903c18d6719cf54cfaceb9e.tar.gz
scrotty-2aa3a2cbe7667ade5903c18d6719cf54cfaceb9e.tar.bz2
scrotty-2aa3a2cbe7667ade5903c18d6719cf54cfaceb9e.tar.xz
small fixes
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e37b20f..9aed25e 100644
--- a/Makefile
+++ b/Makefile
@@ -85,7 +85,7 @@ WARN = -Wall -Wextra -pedantic -Wdouble-promotion -Wformat=2 -Winit-self -Wmissi
-Wstrict-aliasing=1 -fstrict-overflow -Wfloat-equal -Wpadded -Waggregate-return \
-Wtraditional-conversion
# The C standard for C code compilation
-STD = -std=gnu99
+STD = -std=c99
# CPP flags
DEFS = -D'DEVDIR="$(DEVDIR)"' -D'SYSDIR="$(SYSDIR)"' -D'PACKAGE="$(PKGNAME)"' \
-D'LOCALEDIR="$(LOCALEDIR)"' -D'PROGRAM_VERSION="$(VERSION)"'
@@ -173,7 +173,7 @@ bin/mo/%/messages.mo: po/%.po
obj/scrotty.pot: src/scrotty.c
@$(MKDIR) -p obj
- $(CPP) -DUSE_GETTEXT=1 < src/scrotty.c | \
+ $(CPP) -DUSE_GETTEXT=1 src/scrotty.c | \
$(XGETTEXT) -o "$@" -Lc --from-code utf-8 --package-name scrotty \
--package-version 1.1 --no-wrap --force-po \
--copyright-holder 'Mattias Andrée (maandree@member.fsf.org)' -