mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
The clobber target has been removed and the clean target now does what most people would expect (actually cleans the entire build tree).
12 lines
157 B
Makefile
12 lines
157 B
Makefile
#
|
|
# build the tools for linux and Darwin
|
|
#
|
|
UNAME := $(shell uname)
|
|
|
|
all:
|
|
$(MAKE) --directory unix
|
|
|
|
clean:
|
|
$(MAKE) --directory unix clean
|
|
@rm -rf $(UNAME)
|