*** empty log message ***
[h316.git] / Makefile
... / ...
CommitLineData
1# Toplevel Makefile for Hachti's H316 stuff collection
2
3SUBDIRS=pc-tools/ldc pc-tools/src-filters pc-tools/gnt pc-tools/boot-maker lib/iolib lib/fortran \
4 lib/fortran lib/fortran/vpunch-help lib/iolib programs/mandelbrot\
5 programs/punchomat programs/tools systems
6
7# If you want to build the docs, too: Uncomment next line:
8#SUBDIRS+=docs/manual
9
10default:
11 $(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir)&&) /bin/true
12
13%:
14 @echo $@
15 $(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir) $@;)
16
17
18.PHONY: default
19
20