hkd/tests/makefile
Alessandro Mauri cc15646a15 changed makefile
Tests now compile with just -Wall in order to allow for placeholder variables.
Also tests are now compiled in c99
2020-07-25 17:43:21 +02:00

16 lines
192 B
Makefile

CC = gcc
CFLAGS = -Wall -std=c99
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