Skip to content

Commit

Permalink
compiler error fix for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
catriverr committed Sep 7, 2024
1 parent 03d7fce commit 273a42e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 273a42e

Please sign in to comment.