blue-pill: more draugr cleanups

This commit is contained in:
2018-03-07 15:55:54 -08:00
parent f5621c24b8
commit 75c0f46433
4 changed files with 17 additions and 14 deletions

View File

@@ -31,12 +31,12 @@ all: $(BIN)
$(ELF): $(OBJS)
$(ARMCC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
$(ARMSIZE) -A $@
$(ARMSIZE) $@
.PHONY: strip
strip: $(ELF)
$(ARMTC)-strip $(ELF)
$(ARMSIZE) -A $(ELF)
$(ARMSIZE) $(ELF)
$(BIN): $(ELF)
$(OBJCOPY) -O binary $< $@