Skip to content

Commit

Permalink
Fix make clean
Browse files Browse the repository at this point in the history
  • Loading branch information
mauri870 committed Dec 10, 2017
1 parent 3075a14 commit 0f6b0e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ $(BUILD)%.o: $(SOURCE)%.S
$(ARMGNU)-as -I $(SOURCE) $< -o $@

$(BUILD):
mkdir $@
@mkdir $@

# Rule to clean files.
clean :
-rm -rf $(BUILD)
-rm -f $(TARGET)
-rm -f $(LIST)
-rm -f $(MAP)
@rm -f $(BUILD)/*.o $(BUILD)/*.elf
@rm -f $(TARGET)
@rm -f $(LIST)
@rm -f $(MAP)

0 comments on commit 0f6b0e4

Please sign in to comment.