hkd/tests/makefile

22 lines
281 B
Makefile
Raw Permalink Normal View History

2020-04-26 01:04:55 +02:00
CC = gcc
2020-08-30 23:08:52 +02:00
CFLAGS = -Wall -std=c99 -g
2020-04-26 01:04:55 +02:00
parse: parse.c
2020-08-30 23:08:52 +02:00
parse_v2: parse_v2.c
replace: replace.c
replace_v2: replace_v2.c
2020-04-26 01:04:55 +02:00
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:
rm -f *.o parse parse_v2 replace replace_v2 ioctl inotify struct_init