minix/minix/servers/is/Makefile
Lionel Sambuc 50a1aef12b Move all services to /service
This concerns all services, a.k.a drivers, filesystem drivers, network
(inet, lwip, uds) servers, and the system servers.

Change-Id: I626fd15c795e15af42df2d10d47fb4a703665d63
2014-07-31 16:00:31 +02:00

22 lines
566 B
Makefile

# Makefile for Information Server (IS)
.include <bsd.own.mk>
PROG= is
SRCS= main.c dmp.c dmp_kernel.c dmp_pm.c dmp_fs.c dmp_rs.c dmp_ds.c dmp_vm.c
DPADD+= ${LIBSYS}
LDADD+= -lsys
CPPFLAGS.dmp_fs.c+= -I${NETBSDSRCDIR}/minix/servers \
-I${NETBSDSRCDIR}/minix/fs
CPPFLAGS.dmp_kernel.c+= -I${NETBSDSRCDIR}/minix
CPPFLAGS.dmp_rs.c+= -I${NETBSDSRCDIR}/minix
CPPFLAGS.dmp_vm.c+= -I${NETBSDSRCDIR}/minix
# This setting must match the kernel's, as it affects the IRQ hooks table size.
.if ${USE_APIC} != "no"
CFLAGS+= -DUSE_APIC
.endif
.include <minix.service.mk>