Incorporate bsdmake into buildsystem and reorganize libs

This commit is contained in:
Arun Thomas
2010-02-16 14:41:33 +00:00
parent 6686e9ae9f
commit b706112487
1513 changed files with 8094 additions and 26613 deletions

View File

@@ -1,6 +1,6 @@
/* This file contains a collection of miscellaneous procedures:
* minix_panic: abort MINIX due to a fatal error
* kprintf: (from lib/sysutil/kprintf.c)
* kprintf: (from libsys/kprintf.c)
* kputc: buffered putc used by kernel kprintf
*/
@@ -52,7 +52,7 @@ if (minix_panicing++) {
/* Include system printf() implementation named kprintf() */
#define printf kprintf
#include "../lib/sysutil/kprintf.c"
#include "../lib/libsys/kprintf.c"
/*===========================================================================*
* kputc *