aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4fcde4104e522e84645722d82e92b5bab234519d (plain)
1
2
3
4
5
6
7
8
9
CC =gcc
CFLAGS = -O3 -s -mtune=native -Wextra -Wall
CLIBS = -lX11

hotkey: hotkey.c
	$(CC) hotkey.c -o hotkey   $(CFLAGS) $(CLIBS)

clean:
	rm hotkey