13 lines
264 B
Makefile
13 lines
264 B
Makefile
|
# Makefile for random driver (RANDOM)
|
||
|
PROG= random
|
||
|
SRCS= main.c random.c rijndael_api.c rijndael_alg.c
|
||
|
|
||
|
.PATH: ${.CURDIR}/aes
|
||
|
|
||
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
|
||
|
LDADD+= -lchardriver -lsys
|
||
|
|
||
|
CPPFLAGS.random.c+= -I${NETBSDSRCDIR}/minix
|
||
|
|
||
|
.include <minix.service.mk>
|