new features: - hkd now uses mmap internally for loading config files, this allows for better handling of large files and simplifies the code - using aliases no longer requires '<' in the config file, instead the alias name can be used anywhere in the following commands to be replaced - aliases are now correctly replaced - some minor fixes in the man page
22 lines
281 B
Makefile
22 lines
281 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -std=c99 -g
|
|
|
|
parse: parse.c
|
|
|
|
parse_v2: parse_v2.c
|
|
|
|
replace: replace.c
|
|
|
|
replace_v2: replace_v2.c
|
|
|
|
ioctl: ioctl.c
|
|
|
|
evtest: evtest.c
|
|
|
|
inotify: inotify.c
|
|
|
|
struct_init: struct_init.c
|
|
|
|
clean:
|
|
rm -f *.o parse parse_v2 replace replace_v2 ioctl inotify struct_init
|