3f38115c7b
. define _MINIX_SYSTEM for all system code from minix.service.mk . hide some system-level declarations and definitions behind _MINIX_SYSTEM to cleanly fix host tool build problems on Minix (such as: NONE being defined and paddr_t being used but not declared) . the similar definition _SYSTEM is unsuitable as it changes the values of errno definitions Change-Id: I407de79e2575115243a074b16e79546a279cfa3e
13 lines
288 B
Makefile
13 lines
288 B
Makefile
|
|
LIB= ddekit
|
|
|
|
SRC_DIR = ${NETBSDSRCDIR}/lib/libddekit/src
|
|
|
|
VPATH = $(SRC_DIR)
|
|
|
|
SRCS = pci.c printf.c mem.c pgtab.c dde.c initcall.c thread.c condvar.c lock.c semaphore.c timer.c panic.c irq.c resource.c msg_queue.c
|
|
|
|
CPPFLAGS += -D_NETBSD_SOURCE -D_MINIX_SYSTEM
|
|
|
|
.include <bsd.lib.mk>
|
|
|