Fixed crt0.o not creating its output directory
authorJohn Hodge <[email protected]>
Sun, 13 Feb 2011 04:26:15 +0000 (12:26 +0800)
committerJohn Hodge <[email protected]>
Sun, 13 Feb 2011 04:26:15 +0000 (12:26 +0800)
Makefile.cfg
Usermode/Libraries/crt0.o_src/Makefile

index 547f1bb..8308829 100644 (file)
@@ -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
index 62d04ed..a69be9b 100644 (file)
@@ -17,4 +17,5 @@ clean:
        $(RM) $(BIN)
 
 $(BIN): crt0.$(ARCHDIR).asm
+       @$(MKDIR) $(dir $(BIN))
        $(AS) $(ASFLAGS) $< -o $@

UCC git Repository :: git.ucc.asn.au