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

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

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

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