aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6766d91..6a17bdc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-CC = clang
+CC = cc
OUT = build
PLATFORM = unix
@@ -6,7 +6,7 @@ NETCOSM_SRC = $(shell cat SOURCES)
NETCOSM_OBJ := $(NETCOSM_SRC:.c=.o)
CFLAGS = -O3 -g -I src/ -I export/include -Wall -Wextra -Wshadow \
- -std=gnu99 -fno-strict-aliasing
+ -std=c99 -fno-strict-aliasing
LDFLAGS = -lgcrypt -lev
HEADERS = src/*.h export/include/*.h