blob: 7b1377401aed5ff6851de4fa65e5387ad7a407ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
--- results/Makefile.orig 2005-09-04 11:04:28 UTC
+++ results/Makefile
@@ -121,10 +121,10 @@ roff:
echo .ps 12 >> summary.roff
echo .po .35i >> summary.roff
echo .sp .5i >> summary.roff
- make LIST="$(LIST)" summary >> summary.roff
+ ${MAKE} LIST="$(LIST)" summary >> summary.roff
echo .bp >> summary.roff
echo .sp .5i >> summary.roff
- make LIST="$(LIST)" percent >> summary.roff
+ ${MAKE} LIST="$(LIST)" percent >> summary.roff
list:
@echo $(LIST)
@@ -185,11 +185,11 @@ paper:
# XXX - this has to be made incremental, doing everything over from
# scratch makes you want a Ghz machine.
html: dirs
- -make clean
+ -${MAKE} clean
#$(SCRIPTS)bghtml $(BG)
$(SCRIPTS)html-list $(LIST)
$(MK) LIST="$(LIST)" summary > HTML/summary.out 2> HTML/summary.errs
- #make LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
+ #${MAKE} LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
$(MK) LIST="$(LIST)" SIZE= PRINT="$(PS)" \
GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
$(MK) LIST="$(LIST)" SIZE= NOOP=-noop PRINT="$(PS)" \
@@ -207,11 +207,11 @@ html: dirs
rm HTML/*.pbm HTML/___tmp*
htmltest: dirs
- -make clean
+ -${MAKE} clean
#$(SCRIPTS)bghtml $(BG)
$(SCRIPTS)html-list $(LIST)
$(MK) LIST="$(LIST)" summary > HTML/summary.out 2> HTML/summary.errs
- #make LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
+ #${MAKE} LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
$(MK) LIST="$(LIST)" SIZE= PRINT="$(PS)" \
GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
|