diff options
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r-- | src/sys/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile new file mode 100644 index 0000000..52e4e20 --- /dev/null +++ b/src/sys/Makefile @@ -0,0 +1,17 @@ +include conf/sys.mk + +TARGETDIR = arch/$(TARGET) +CC = +LD = +AS = + +.PHONY: all +all: md + +.PHONY: md +md: + cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) + +.PHONY: clean +clean: + cd $(TARGETDIR); make clean |