hkd/tests/makefile

16 lines
201 B
Makefile
Raw Normal View History

2020-04-26 01:04:55 +02:00
CC = gcc
2020-06-09 20:47:25 +02:00
CFLAGS = -Wall -Werror -pedantic
2020-04-26 01:04:55 +02:00
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