Files
cc65/src/make/gcc.mak
uz e60544452e Added the chrcvt vector font converter to the top level makefile.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4406 b7a2c559-68d2-44c3-8de9-860c34a00d81
2009-10-30 21:35:25 +00:00

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