16 lines
205 B
Makefile
16 lines
205 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -Werror -pedantic -O2
|
|
|
|
parse: parse.c
|
|
|
|
ioctl: ioctl.c
|
|
|
|
evtest: evtest.c
|
|
|
|
inotify: inotify.c
|
|
|
|
struct_init: struct_init.c
|
|
|
|
clean:
|
|
rm *.o parse ioctl inotify struct_init 2> /dev/null
|