*** empty log message ***
[h316.git] / Makefile
CommitLineData
3d113773 1# Toplevel Makefile for Hachti's H316 stuff collection
2
fa105a9b 3# First we need the PC side tools. Nothing runs without them!
fe67c7be 4SUBDIRS=pc-tools
fa105a9b 5
6# Now we build the libraries which are always rebuild using the original compiler and
7# assembler tapes
d6a1a234 8SUBDIRS+=lib
fa105a9b 9
10# Here we link the assembler - via a trick
11SUBDIRS+=systems/dap
12
13# What's missing for the systems
14SUBDIRS+=programs/tools
15
16# Now we can build the super images and slst
17SUBDIRS+=systems
18
19# The compiler is rebuilt as well!
4dafd752 20SUBDIRS+=programs/fortran
fa105a9b 21
22# And all other H316 tools depending on all the other stuff
047c458f 23SUBDIRS+=programs
fa105a9b 24
adbca57e 25#lib/fortran/vpunch-help
26
18e3fabb 27# If you want to build the docs, too: Uncomment next line:
28#SUBDIRS+=docs/manual
3d113773 29
fe67c7be 30
3d113773 31default:
4dafd752 32 @mklink.sh
fa105a9b 33 @$(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir)&&) /bin/true
3d113773 34
4dafd752 35clean:
6f41bb44 36 @mklink.sh
37 @$(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir) $@&&) true
fe67c7be 38 @rmlink.sh
99ab1007 39
3d113773 40%:
41 @echo $@
4dafd752 42 @mklink.sh
3d113773 43 $(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir) $@;)
44
45
fa105a9b 46.PHONY: default cvsclean
6d498331 47
3d113773 48