Update makefile

This commit is contained in:
Marc barbier
2021-08-17 12:38:17 +02:00
committed by GitHub
parent 8d07fe37f7
commit 7643e75dff
+3 -3
View File
@@ -1,9 +1,9 @@
LIBS =
COMPILER = g++
WINDOWS_COMPILE = x86_64-w64-mingw32-g++
WINDOWS_LD_FLAG = -Wall -Wextra --static $(shell x86_64-w64-mingw32-pkg-config --static --libs $(LIBS))
COMPILE_FLAG = -c
LD_FLAG = -Wall -Wextra $(shell pkg-config --static --libs $(LIBS))
WINDOWS_LD_FLAG = -static $(shell x86_64-w64-mingw32-pkg-config --static --libs $(LIBS))
COMPILE_FLAG = -Wall -Wextra -c
LD_FLAG = $(shell pkg-config --static --libs $(LIBS))
OBJDIR=./objs/
SRC=./src/
SRCS=$(shell ls src/* | grep "\.c")