aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-24 09:19:11 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-24 09:19:11 +0200
commit9a1ff4de4262f4a5b574a0d0c7c576c505b208d6 (patch)
treec78e11e6742245a647aa31ee2edfd32a5821f42c /Makefile
parentremove x86 dependency but add unix dependency (diff)
downloadhungarian-algorithm-n3-9a1ff4de4262f4a5b574a0d0c7c576c505b208d6.tar.gz
hungarian-algorithm-n3-9a1ff4de4262f4a5b574a0d0c7c576c505b208d6.tar.bz2
hungarian-algorithm-n3-9a1ff4de4262f4a5b574a0d0c7c576c505b208d6.tar.xz
fix some warnings
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 514127a..d2ac0ef 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) -o $@ $<
+ gcc -std=c99 $(OPTIMISE) $(WARN) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o $@ $<
test:
./"hungarian"