mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 22:30:12 +00:00
Added main makefile for target utils.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5522 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
1d8e059eb2
commit
af2417fc92
32
targetutil/Makefile
Normal file
32
targetutil/Makefile
Normal file
@ -0,0 +1,32 @@
|
||||
#
|
||||
# Makefile
|
||||
#
|
||||
|
||||
# --------------------------------------------------------------------------
|
||||
# Programs
|
||||
|
||||
# Subdirectories
|
||||
SUBDIRS = apple2 geos-apple
|
||||
|
||||
# --------------------------------------------------------------------------
|
||||
# List of executables. This list could be made target dependent by checking
|
||||
# $(SYS).
|
||||
|
||||
.PHONY: all
|
||||
all:
|
||||
@for DIR in $(SUBDIRS); do \
|
||||
$(MAKE) -C $${DIR} $(MAKEOPTS); \
|
||||
done
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
@for DIR in $(SUBDIRS); do \
|
||||
$(MAKE) -C $${DIR} $(MAKEOPTS) clean; \
|
||||
done
|
||||
|
||||
.PHONY: zap
|
||||
zap:
|
||||
@for DIR in $(SUBDIRS); do \
|
||||
$(MAKE) -C $${DIR} $(MAKEOPTS) zap; \
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user