Initial Spring 2016 commit.

This commit is contained in:
Geoffrey Challen
2015-12-23 00:50:04 +00:00
commit cafa9f5690
732 changed files with 92195 additions and 0 deletions

28
userland/Makefile Normal file
View File

@@ -0,0 +1,28 @@
#
# Toplevel userland makefile for OS/161.
#
TOP=..
.include "$(TOP)/mk/os161.config.mk"
# lib must be first.
SUBDIRS=lib .WAIT bin sbin testbin
INCLUDES=\
include include \
include/sys include/sys \
include/test include/test \
include/types include/types
INCLUDELINKS=\
kern/machine include/machine \
$(MACHINE) include/kern/machine
.include "$(TOP)/mk/os161.subdir.mk"
.include "$(TOP)/mk/os161.includes.mk"
includes: hostincludes
hostincludes:
(cd lib/hostcompat && $(MAKE) includes)
.PHONY: includes hostincludes