mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:23:13 -06:00
24 lines
406 B
Makefile
24 lines
406 B
Makefile
#
|
|
# build the tools for linux and Darwin
|
|
#
|
|
|
|
.ONESHELL:
|
|
.SHELLFLAGS = -ce
|
|
|
|
UNAME := $(shell uname)
|
|
ifeq ($(UNAME), Linux)
|
|
SUFFIX=linux
|
|
endif
|
|
ifeq ($(UNAME), Darwin)
|
|
SUFFIX=osx
|
|
endif
|
|
|
|
SUBDIRS = OpenSpin uz80as zxcc cpmtools bin2asm lzsa
|
|
|
|
all:
|
|
@chmod +x casefn.sh
|
|
@$(foreach subdir,$(SUBDIRS),$(MAKE) --directory $(subdir) all;)
|
|
|
|
clean:
|
|
@$(foreach subdir,$(SUBDIRS),$(MAKE) --directory $(subdir) clean;)
|