aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-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