summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
blob: 3190c4ade5642357dd5051d8138d64655eaf20ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
KERNEL_DIR ?= /lib/modules/$(shell uname -r)/build

hostprogs := cipher hmac new
example-cipher-objs := cipher.o
example-hmac-objs := hmac.o
new-objs := new.o

check: $(hostprogs)
	./new
	./cipher
	./hmac

clean:
	rm -f *.o *~ hmac cipher new