Skip to content

Commit

Permalink
Update makefile_norun
Browse files Browse the repository at this point in the history
  • Loading branch information
maksw2 committed Jun 20, 2024
1 parent a96d59a commit 8750f2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile_norun
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ objects := $(patsubst $(sourceDir)/%.cpp,$(objectDir)/%.o,$(sources)) $(foreach
flags = -lopengl32 -lglfw3 -lgdi32 -static -static-libgcc -static-libstdc++
warnings := all

default: $(executable) run
default:

$(executable): $(objects) | $(binaryDir)
$(cc) $(foreach warn,$(warnings),-W$(warn)) $^ -o $@ $(foreach dir,$(includeDirs),-I$(dir)) $(foreach dir,$(libDirs),-L$(dir)) $(flags)
Expand Down

0 comments on commit 8750f2d

Please sign in to comment.