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 6434770..7be8d60 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC = clang
-CFLAGS = -std=c11 -Wall -g
+CFLAGS = -std=gnu11 -Wall -g
BIN = ml
OBJDIR = objs
SRC = $(wildcard src/*.c)
@@ -22,7 +22,7 @@ build: $(OBJS)
${CC} ${DLIBS} -o ${BIN} ${OBJS}
run: build
- ./${BIN}
+ ./${BIN} train -a 230 test.json -e 150
debug: build
gdb -x utils/commands.gdb --tui --args ${BIN} train -a 230 test.json -e 150
Feel free to download, copy and edit any repo