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

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