Files
RomWBW/Tools/unix/Makefile
Wayne Warthen f126b9ff63 Linux Permissions (cont)
- Added chmod +x  commands for shell scripts (casefn.sh & Build.sh)
2021-07-12 14:22:02 -07:00

29 lines
428 B
Makefile

#
# build the tools for linux and Darwin
#
UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
SUFFIX=linux
endif
ifeq ($(UNAME), Darwin)
SUFFIX=osx
endif
SUBDIRS= bst uz80as zx cpmtools bin2asm lzsa
all:
chmod +x casefn.sh
@for i in $(SUBDIRS) ; do \
(cd $$i ; make all ) \
done
clobber:
@for i in $(SUBDIRS) ; do \
(cd $$i ; make clobber ) \
done
clean:
@for i in $(SUBDIRS) ; do \
(cd $$i ; make clean ) \
done