diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-23 22:34:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 22:34:29 -0400 |
commit | b071ca4b3dd89b1508b1ed15896a7e113c87bd2c (patch) | |
tree | fe240f0468f02db19f4cf5020922ca9f19e9409b /arm9/lib | |
parent | 615c6579c80a9bcc9482d5ef6e06654bb07494f6 (diff) | |
parent | 5ce948ab4aa7165ade74b0fad6e11c33966ffa77 (diff) |
Merge pull request #186 from PikalaxALT/pikalax_work
Spring cleanup. In summer.
Diffstat (limited to 'arm9/lib')
-rw-r--r-- | arm9/lib/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arm9/lib/Makefile b/arm9/lib/Makefile index c0e95ade..fd6471f1 100644 --- a/arm9/lib/Makefile +++ b/arm9/lib/Makefile @@ -7,10 +7,6 @@ ifneq (,$(wildcard $(TOOLCHAIN)/base_tools)) include $(TOOLCHAIN)/base_tools endif -### Default target ### - -default: all - # If you are using WSL, it is recommended you build with NOWINE=1. WSLENV ?= no ifeq ($(WSLENV),) @@ -73,6 +69,7 @@ LIBS := libsyscall.a .PHONY: all clean all: $(LIBS) + @: clean: $(RM) $(LIBS) $(LIBS:%.a=%/*.o) |