diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-23 23:03:38 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-23 23:03:38 +0100 |
commit | a6fea980cc35c408e9e88c9bf20edf80bed7ac92 (patch) | |
tree | 68cb8dcb6c3103b1f8a72ec486e26805eb4c50fe /Makefile | |
parent | Use c99 (diff) | |
download | hungarian-algorithm-n3-master.tar.gz hungarian-algorithm-n3-master.tar.bz2 hungarian-algorithm-n3-master.tar.xz |
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |