forked from MirrorRepos/RomWBW
Browse Source
The clobber target has been removed and the clean target now does what most people would expect (actually cleans the entire build tree).patch
19 changed files with 29 additions and 56 deletions
@ -1,20 +1,18 @@ |
|||
all: |
|||
$(MAKE) --directory Tools/unix |
|||
$(MAKE) --directory Tools |
|||
$(MAKE) --directory Source |
|||
|
|||
clean: |
|||
$(MAKE) --directory Tools/unix clean |
|||
$(MAKE) --directory Tools clean |
|||
$(MAKE) --directory Source clean |
|||
$(MAKE) --directory Binary clean |
|||
|
|||
clobber: |
|||
$(MAKE) --directory Tools/unix clobber |
|||
$(MAKE) --directory Source clobber |
|||
$(MAKE) --directory Binary clobber |
|||
rm -f typescript |
|||
clobber: clean |
|||
|
|||
diff: |
|||
$(MAKE) --directory Source diff |
|||
|
|||
dist: |
|||
$(MAKE) ROM_PLATFORM=dist |
|||
$(MAKE) --directory Source clean |
|||
$(MAKE) --directory Tools clean |
|||
|
|||
@ -0,0 +1,11 @@ |
|||
#
|
|||
# build the tools for linux and Darwin
|
|||
#
|
|||
UNAME := $(shell uname) |
|||
|
|||
all: |
|||
$(MAKE) --directory unix |
|||
|
|||
clean: |
|||
$(MAKE) --directory unix clean |
|||
@rm -rf $(UNAME) |
|||
Loading…
Reference in new issue