aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-24 09:44:34 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-24 09:44:34 +0200
commit8fedad860ca981be8f313c144e0122916e971796 (patch)
tree9f00bf0f3f1527b2e743dc86727dfc165dcc7735 /Makefile
parentfix some warnings (diff)
downloadhungarian-algorithm-n3-8fedad860ca981be8f313c144e0122916e971796.tar.gz
hungarian-algorithm-n3-8fedad860ca981be8f313c144e0122916e971796.tar.bz2
hungarian-algorithm-n3-8fedad860ca981be8f313c144e0122916e971796.tar.xz
work towards portability
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d2ac0ef..0ebcbbc 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ WARN = -Wall -Wextra -pedantic -Wdouble-promotion -Wformat=2 -Winit-self -Wmissi
all: hungarian
hungarian: hungarian.c
- gcc -std=c99 $(OPTIMISE) $(WARN) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o $@ $<
+ gcc -std=gnu99 $(OPTIMISE) $(WARN) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o $@ $<
test:
./"hungarian"