summaryrefslogtreecommitdiff
path: root/src/sys/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r--src/sys/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile
index 6e1cc74..fdd9c54 100644
--- a/src/sys/Makefile
+++ b/src/sys/Makefile
@@ -6,11 +6,11 @@ LD =
AS =
.PHONY: all
-all: kern md
+all: os md
-.PHONY: kern
-kern:
- cd kern; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR)
+.PHONY: os
+os:
+ cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR)
.PHONY: md
md:
@@ -19,4 +19,4 @@ md:
.PHONY: clean
clean:
cd $(TARGETDIR); make clean
- cd kern; make clean
+ cd os; make clean