436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
17 lines
226 B
Makefile
17 lines
226 B
Makefile
##
|
|
## Makefile for Dec21140A ethernet board driver
|
|
##
|
|
PROG= dec21140A
|
|
SRCS= dec21140A.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
debug= 0
|
|
CPPFLAGS+= -Ddebug=${debug} -ws -w -Wall
|
|
|
|
.include <minix.prog.mk>
|