Skip to content

Commit

Permalink
Enable compiler optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDcoder committed Dec 13, 2018
1 parent ded6b19 commit 86f83a9
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 @@ -5,7 +5,7 @@ man = $(program).1
.PHONY: install uninstall clean

$(program): $(program).c
$(compiler) -Wall -o $(program) xkeymacro/xkeymacro.c $(program).c -lX11 -lxdo
$(compiler) -O2 -Wall -o $(program) xkeymacro/xkeymacro.c $(program).c -lX11 -lxdo

$(man).gz: $(program)
help2man --no-info --output $(man) ./$(program)
Expand Down

0 comments on commit 86f83a9

Please sign in to comment.