Files
cc65/src/make/gcc.mak
uz bb1d6d94a3 Renamed grc to grc65 to avoid name conflicts with another software named grc.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4875 b7a2c559-68d2-44c3-8de9-860c34a00d81
2010-11-18 18:47:01 +00:00

27 lines
389 B
Makefile

#
# gcc Makefile for the program sources
#
PROGS = \
ar65 \
ca65 \
cc65 \
chrcvt \
cl65 \
co65 \
da65 \
grc65 \
ld65 \
od65
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)