aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-02-22 13:42:13 +0100
committerMattias Andrée <m@maandree.se>2026-02-22 13:42:13 +0100
commitff2050b9e8ec451b613332aa87d357cf08b48108 (patch)
tree3901b22b9834ac937bb82bb542c85bc293bb0c4c /Makefile
parentFix makefile (diff)
downloadhungarian-algorithm-n3-ff2050b9e8ec451b613332aa87d357cf08b48108.tar.gz
hungarian-algorithm-n3-ff2050b9e8ec451b613332aa87d357cf08b48108.tar.bz2
hungarian-algorithm-n3-ff2050b9e8ec451b613332aa87d357cf08b48108.tar.xz
m fixesHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0552a4e..7a24eab 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,11 @@
.POSIX:
+CC = c99
+
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
-CFLAGS = -std=c99 -g
+CFLAGS = -g
LDFLAGS =
-
all: hungarian
hungarian: hungarian.c
@@ -13,5 +14,4 @@ hungarian: hungarian.c
clean:
-rm -f -- hungarian
-
.PHONY: all clean