diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-07 21:59:34 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-07 21:59:34 +0100 |
commit | 2aa3a2cbe7667ade5903c18d6719cf54cfaceb9e (patch) | |
tree | a2eee84eb8248ff9705be547225c6d895bd6100f /Makefile | |
parent | deps: alloca (diff) | |
download | scrotty-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)' - |