import / small alignment of many arm includes
[minix3.git] / servers / is / Makefile
blobcde8c7ac4716307f6b63294c7e8192b7cfdb9ddf
1 # Makefile for Information Server (IS)
4 .include <bsd.own.mk>
6 PROG= is
7 SRCS= main.c dmp.c dmp_kernel.c dmp_pm.c dmp_fs.c dmp_rs.c dmp_ds.c dmp_vm.c
9 DPADD+= ${LIBSYS}
10 LDADD+= -lsys
12 MAN=
14 BINDIR?= /sbin
16 CPPFLAGS.dmp_kernel.c+= -I${NETBSDSRCDIR}
17 CPPFLAGS.dmp_rs.c+= -I${NETBSDSRCDIR}
18 CPPFLAGS.dmp_vm.c+= -I${NETBSDSRCDIR}
20 # This setting must match the kernel's, as it affects the IRQ hooks table size.
21 .if ${USE_APIC} != "no"
22 CFLAGS+= -DUSE_APIC
23 .endif
25 .include <minix.service.mk>