aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-02-23 23:03:38 +0100
committerMattias Andrée <maandree@kth.se>2021-02-23 23:03:38 +0100
commita6fea980cc35c408e9e88c9bf20edf80bed7ac92 (patch)
tree68cb8dcb6c3103b1f8a72ec486e26805eb4c50fe
parentUse c99 (diff)
downloadhungarian-algorithm-n3-a6fea980cc35c408e9e88c9bf20edf80bed7ac92.tar.gz
hungarian-algorithm-n3-a6fea980cc35c408e9e88c9bf20edf80bed7ac92.tar.bz2
hungarian-algorithm-n3-a6fea980cc35c408e9e88c9bf20edf80bed7ac92.tar.xz
Fix makefileHEADmaster
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9f060d7..0552a4e 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ LDFLAGS =
all: hungarian
hungarian: hungarian.c
- gcc -o $@ $< $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
+ $(CC) -o $@ hungarian.c $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
clean:
-rm -f -- hungarian