CentOS7 build fix

This commit is contained in:
Pin
2021-10-23 01:41:16 -04:00
parent d050bdd5da
commit f295498164

View File

@@ -5,7 +5,7 @@ OUTPUT = -o ${OUTPUT_BIN}
SOURCES = ./src/* ./cmd/shell.c
build: output_dir
gcc -Wall ${LIBRARIES} ${SOURCES} ${OUTPUT:PROG=rshell}
gcc -Wall -std=gnu99 ${LIBRARIES} ${SOURCES} ${OUTPUT:PROG=rshell}
debug: output_dir
gcc -Wall -g ${LIBRARIES} ${SOURCES} ${OUTPUT:PROG=rshell}