From 273a42e2761b14befbd64deea71d3a318d79b69c Mon Sep 17 00:00:00 2001 From: FarewellNehir Date: Sat, 7 Sep 2024 13:30:55 +0300 Subject: [PATCH] compiler error fix for linux --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 267d8ec..3893957 100755 --- a/makefile +++ b/makefile @@ -36,7 +36,7 @@ all: lib/bin/out/gmeng # Rule to build lib/bin/src/index.cpp lib/bin/out/gmeng: lib/bin/src/index.cpp - $(CXX) $(OUTFILE) $(CXXFLAGS) lib/bin/src/index.cpp + $(CXX) $(OUTFILE) lib/bin/src/index.cpp $(CXXFLAGS) # Target for test, builds test.cpp test: test.cpp