Files
RomWBW/Tools/Makefile
Wayne Warthen d241db5c11 Makefile Improvements
The clobber target has been removed and the clean target now does what most people would expect (actually cleans the entire build tree).
2022-07-06 16:39:03 -07:00

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)