mirror of
https://github.com/moparisthebest/uinput-mapper
synced 2024-11-22 00:12:14 -05:00
14 lines
208 B
Makefile
14 lines
208 B
Makefile
.PHONY: default clean
|
|
|
|
CFLAGS+=-ansi -pedantic -Wall -Wextra -Werror -Wno-unused-result
|
|
CFLAGS+=-pipe -O2
|
|
CFLAGS+=-D_BSD_SOURCE
|
|
|
|
default: read
|
|
|
|
map: read.c
|
|
$(CC) read.c $(CFLAGS) -o read
|
|
|
|
clean:
|
|
rm -f read
|