]> git.scottworley.com Git - keystroke-timestamps/blob - Makefile
Allow multiple keystrokes at the same time
[keystroke-timestamps] / Makefile
1 prefix = /usr/local
2 bindir = $(prefix)/bin
3 INSTALL = install
4
5 keystroke-timestamps:
6
7 %: %.c
8 $(CC) -Wall -Wextra -pedantic -o $@ $^
9
10 install: keystroke-timestamps
11 $(INSTALL) -d $(DESTDIR)$(bindir)
12 $(INSTALL) -m 755 $^ $(DESTDIR)$(bindir)