2020-04-26 01:04:55 +02:00
|
|
|
CC = gcc
|
|
|
|
|
CFLAGS = -Wall -Werror -pedantic -O2
|
|
|
|
|
|
|
|
|
|
parse: parse.c
|
|
|
|
|
|
|
|
|
|
ioctl: ioctl.c
|
|
|
|
|
|
|
|
|
|
evtest: evtest.c
|
|
|
|
|
|
2020-05-13 00:17:29 +02:00
|
|
|
inotify: inotify.c
|
|
|
|
|
|
2020-06-09 15:46:44 +02:00
|
|
|
struct_init: struct_init.c
|
|
|
|
|
|
2020-04-26 01:04:55 +02:00
|
|
|
clean:
|
2020-06-09 15:46:44 +02:00
|
|
|
rm *.o parse ioctl inotify struct_init 2> /dev/null
|