From 546a015f74fab0c4e359cf97f289ff26d6481844 Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Mon, 7 Jun 2010 14:41:20 -0500 Subject: Create init process, fix scheduler bugs. --- src/sys/init/makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/sys/init/makefile (limited to 'src/sys/init/makefile') diff --git a/src/sys/init/makefile b/src/sys/init/makefile new file mode 100644 index 000000000..4a1ecf48b --- /dev/null +++ b/src/sys/init/makefile @@ -0,0 +1,10 @@ +OBJDIR = ../../../obj +include ../../../config.mk + +OBJS = init_main.o +OBJECTS = $(addprefix ${OBJDIR}/, ${OBJS}) + +all: ${OBJECTS} + +clean: + (rm -f ${OBJECTS} ) -- cgit v1.2.1