From: John Hodge Date: Sun, 13 Feb 2011 04:26:15 +0000 (+0800) Subject: Fixed crt0.o not creating its output directory X-Git-Tag: rel0.07~6 X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=commitdiff_plain;h=fc58eaba53ea07f7ab396dd82371ee982bfa30ec Fixed crt0.o not creating its output directory --- diff --git a/Makefile.cfg b/Makefile.cfg index 547f1bbb..83088295 100644 --- a/Makefile.cfg +++ b/Makefile.cfg @@ -15,7 +15,7 @@ AS := nasm DISASM := objdump -d -S RM := @rm -f STRIP := strip -MKDIR := mkdir +MKDIR := mkdir -p RMDIR := rm -rf lCP := cp xCP := mcopy -D o diff --git a/Usermode/Libraries/crt0.o_src/Makefile b/Usermode/Libraries/crt0.o_src/Makefile index 62d04ed5..a69be9b6 100644 --- a/Usermode/Libraries/crt0.o_src/Makefile +++ b/Usermode/Libraries/crt0.o_src/Makefile @@ -17,4 +17,5 @@ clean: $(RM) $(BIN) $(BIN): crt0.$(ARCHDIR).asm + @$(MKDIR) $(dir $(BIN)) $(AS) $(ASFLAGS) $< -o $@