Files
cc65/src/make/gcc.mak
uz 921ef39162 Added sp65 to the tools makefiles.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5600 b7a2c559-68d2-44c3-8de9-860c34a00d81
2012-03-10 23:11:42 +00:00

28 lines
407 B
Makefile

#
# gcc Makefile for the program sources
#
PROGS = \
ar65 \
ca65 \
cc65 \
chrcvt \
cl65 \
co65 \
da65 \
grc65 \
ld65 \
od65 \
sp65
SUBDIRS = common $(PROGS)
.PHONY: all dist clean zap $(SUBDIRS)
all dist clean zap: $(SUBDIRS)
# Finish building the common library before allowing parallel makes.
$(PROGS): common
$(SUBDIRS):
$(MAKE) -C $@ -f make/gcc.mak $(MAKECMDGOALS)