CC = gcc
CFLAGS = -Wall -Werror -pedantic -O2

parse: parse.c

ioctl: ioctl.c

evtest: evtest.c

inotify: inotify.c

clean:
	rm *.o parse ioctl inotify 2> /dev/null