22 lines
307 B
Makefile
22 lines
307 B
Makefile
#
|
|
# gcc Makefile for the program sources
|
|
#
|
|
|
|
SUBDIRS = \
|
|
common \
|
|
ar65 \
|
|
ca65 \
|
|
cc65 \
|
|
chrcvt \
|
|
cl65 \
|
|
co65 \
|
|
da65 \
|
|
grc \
|
|
ld65 \
|
|
od65
|
|
|
|
.PHONY: all dist clean zap
|
|
all dist clean zap:
|
|
for i in $(SUBDIRS); do $(MAKE) -C $$i -f make/gcc.mak $@ || exit $$?; done
|
|
|