mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 00:07:21 +00:00
33 lines
608 B
Makefile
33 lines
608 B
Makefile
|
#
|
||
|
# 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
|
||
|
|