Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/makefile @ 2855:e126b9acab32 lwtools-port
rules.mak: Do not hardcode path for "echo"
It is basically the only tool with full path here and I don't see any
reason for it. We don't use special echo options that would fail
on the shell built-in echo.
Also don't hardcode path for losetup. sudo should make sure you
have the relevant location in your path, and that the path is sanitized,
otherwise your sudo setup is broken.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 13 Jul 2013 11:30:31 +0200 |
parents | 56179f66e43d |
children | baa835d68db2 bd286ab169c7 |
rev | line source |
---|---|
1363 | 1 include ../rules.mak |
0 | 2 |
2478 | 3 dirs = booters drivers fmgrs p2mods subrtns utils packages |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
4 |
0 | 5 # Make all components |
6 all: | |
1366 | 7 @$(ECHO) "**************************************************" |
8 @$(ECHO) "* *" | |
9 @$(ECHO) "* 3rd Party Software *" | |
10 @$(ECHO) "* *" | |
11 @$(ECHO) "**************************************************" | |
1133 | 12 $(foreach dir, $(dirs), ($(CD) $(dir); make);) |
0 | 13 |
14 # Clean all components | |
2224 | 15 clean: |
1133 | 16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
17 |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
18 # Make DSK images |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
19 dsk: |
1133 | 20 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);) |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
21 |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
22 # Clean DSK images |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
23 dskclean: |
1133 | 24 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);) |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
25 |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1037
diff
changeset
|
26 # Copy DSK images |
2224 | 27 dskcopy: |
1133 | 28 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);) |
2216 | 29 |
30 # Info | |
31 info: | |
32 @$(foreach dir, $(dirs), ($(CD) $(dir); make info; $(ECHO));) |