mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
16 lines
188 B
Makefile
16 lines
188 B
Makefile
#
|
|
# build the tools for linux and Darwin
|
|
#
|
|
|
|
.ONESHELL:
|
|
.SHELLFLAGS = -ce
|
|
|
|
UNAME := $(shell uname)
|
|
|
|
all:
|
|
$(MAKE) --directory unix
|
|
|
|
clean:
|
|
$(MAKE) --directory unix clean
|
|
@rm -rf $(UNAME)
|