Remove building with NOCRYPTO option
[minix.git] / minix / servers / ds / Makefile
blob649611c18b07c9c74cf29a6208fe63ee9ced1e7b
1 # Makefile for Data Store Server (DS)
2 PROG= ds
3 SRCS= main.c store.c
5 DPADD+= ${LIBSYS}
6 LDADD+= -lsys
8 # FIXME: workaround for the linker pass not seeing weak symbols. The
9 # following symbols are essential for magic instrumentation, since they
10 # perform memory de/allocation. For some reason, their weak versions are
11 # not picked up by the linker in the first (instrumentation) pass. With
12 # these definitions we force the first pass to include them.
13 CPPFLAGS.store.c+= -Dregcomp=_regcomp -Dregfree=_regfree
15 .include <minix.service.mk>