makefile: Add CXXFLAGS to hyprlctl's Makefile (#3913)

This commit is contained in:
Ngô Huy 2023-11-22 18:02:36 +07:00 committed by GitHub
parent 4729265284
commit d417370bb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
all:
$(CXX) -std=c++2b ./main.cpp -o ./hyprctl
$(CXX) $(CXXFLAGS) -std=c++2b ./main.cpp -o ./hyprctl
clean:
rm ./hyprctl