annotate 3rdparty/fmgrs/makefile @ 3162:c44cd20907bd

sysgo.asm: Delete trailing whitespace, fix indent (no functional change) Add comments and vertical whitespace for readability.
author Neal Crook <foofoobedoo@gmail.com>
date Thu, 06 Apr 2017 22:04:46 +0100
parents 9edca3e61b66
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2890
1addfd8c9d5f Revert e4a0f58a5f9b (set NITROS9DIR in makefiles)
Tormod Volden <debian.tormod@gmail.com>
parents: 2758
diff changeset
1 include ../../rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
3 dirs = msf
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
4
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 all:
1366
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
7 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
8 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
9 @$(ECHO) "* File Managers *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
10 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
11 @$(ECHO) "**************************************************"
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2890
diff changeset
12 $(foreach dir,$(dirs),$(MAKE) -C $(dir) &&) :
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
14 # Clean all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
15 clean:
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2890
diff changeset
16 $(foreach dir, $(dirs), $(MAKE) -C $(dir) clean ;)
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
17
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
18 # Make DSK images
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
19 dsk:
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2890
diff changeset
20 $(foreach dir,$(dirs),$(MAKE) -C $(dir) dsk &&) :
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
21
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
22 # Copy DSK images
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 679
diff changeset
23 dskcopy:
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2890
diff changeset
24 $(foreach dir,$(dirs),$(MAKE) -C $(dir) dskcopy &&) :