]> git.sur5r.net Git - cc65/blob - src/make/gcc.mak
Renamed grc to grc65 to avoid name conflicts with another software named grc.
[cc65] / src / make / gcc.mak
1 #
2 # gcc Makefile for the program sources
3 #
4 PROGS =         \
5         ar65    \
6         ca65    \
7         cc65    \
8         chrcvt  \
9         cl65    \
10         co65    \
11         da65    \
12         grc65   \
13         ld65    \
14         od65
15
16 SUBDIRS = common $(PROGS)
17
18 .PHONY: all dist clean zap $(SUBDIRS)
19 all dist clean zap:     $(SUBDIRS)
20
21 # Finish building the common library before allowing parallel makes.
22 $(PROGS):       common
23
24 $(SUBDIRS):
25         $(MAKE) -C $@ -f make/gcc.mak $(MAKECMDGOALS)
26