From 1755b4b89d659d4060dfb2b7d4c7f7f88cd24ebe Mon Sep 17 00:00:00 2001 From: drmortalwombat <90205530+drmortalwombat@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:58:13 +0200 Subject: [PATCH] Create bin folder in linux makefile --- make/makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make/makefile b/make/makefile index 71074d0..a1cf3c4 100644 --- a/make/makefile +++ b/make/makefile @@ -6,7 +6,8 @@ objects = $(patsubst ../oscar64/%.cpp,%.o,$(sources)) CXX = c++ CPPFLAGS = -g -O2 -std=c++11 -Wno-switch - + $(shell mkdir -p ../bin) + ifdef WINDIR linklibs = -lpthread else