Initial commit

This commit is contained in:
Andreas Abel
2019-02-20 14:57:43 +01:00
parent 6caf859eab
commit a01b9742c7
32 changed files with 4813 additions and 1 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: user kernel
all: user kernel
user:
$(MAKE) -C user/
kernel:
cd kernel; $(MAKE)
clean:
$(MAKE) -C user/ clean
cd kernel; $(MAKE) clean