Optional IPC logging

This commit is contained in:
Erik van der Kouwe
2010-06-24 13:31:40 +00:00
parent 3985311b2e
commit fe07e7c984
9 changed files with 210 additions and 1 deletions

View File

@@ -32,3 +32,17 @@ MAN=
.include "system/Makefile.inc"
.include "arch/${ARCH}/Makefile.inc"
.include <minix.prog.mk>
debug.d: extracted-errno.h extracted-mfield.h extracted-mtype.h
extracted-errno.h: extract-errno.sh ../include/errno.h
sh extract-errno.sh > extracted-errno.h
extracted-mfield.h: extract-mfield.sh ../lib/libc/other/*.c ../lib/libc/posix/*.c ../lib/libsys/*.c
sh extract-mfield.sh > extracted-mfield.h
extracted-mtype.h: extract-mtype.sh ../include/minix/com.h
sh extract-mtype.sh > extracted-mtype.h
clean:
rm -f extracted-errno.h extracted-mfield.h extracted-mtype.h