436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
12 lines
153 B
Makefile
12 lines
153 B
Makefile
# Makefile for Data Store Server (DS)
|
|
PROG= ds
|
|
SRCS= main.c store.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.prog.mk>
|