forked from MirrorRepos/RomWBW
These changes improve the chances of a make operation actually failing when a nested error occurs.
16 lines
189 B
Makefile
16 lines
189 B
Makefile
#
|
|
# build the tools for linux and Darwin
|
|
#
|
|
|
|
.ONESHELL:
|
|
.SHELLFLAGS = -cex
|
|
|
|
UNAME := $(shell uname)
|
|
|
|
all:
|
|
$(MAKE) --directory unix
|
|
|
|
clean:
|
|
$(MAKE) --directory unix clean
|
|
@rm -rf $(UNAME)
|