Skip to content
Snippets Groups Projects
Commit fc58eaba authored by John Hodge's avatar John Hodge
Browse files

Fixed crt0.o not creating its output directory

parent 310d4fe3
Branches
Tags
No related merge requests found
......@@ -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
......
......@@ -17,4 +17,5 @@ clean:
$(RM) $(BIN)
$(BIN): crt0.$(ARCHDIR).asm
@$(MKDIR) $(dir $(BIN))
$(AS) $(ASFLAGS) $< -o $@
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment