|
Lines 23-29
Link Here
|
| 23 |
|
23 |
|
| 24 |
all: $(ALL) |
24 |
all: $(ALL) |
| 25 |
for i in $(MAYBE8); \ |
25 |
for i in $(MAYBE8); \ |
| 26 |
do if test -f $$i.man; then make -f ../Makefile $$i.8; fi; done |
26 |
do if test -f $$i.man; then $(MAKE) -f ../Makefile $$i.8; fi; done |
| 27 |
|
27 |
|
| 28 |
install: $(ALL) |
28 |
install: $(ALL) |
| 29 |
mkdir -p $(mandir)/man1 $(mandir)/man5 $(mandir)/man8 |
29 |
mkdir -p $(mandir)/man1 $(mandir)/man5 $(mandir)/man8 |
|
Lines 42-55
Link Here
|
| 42 |
subdirs: |
42 |
subdirs: |
| 43 |
@for i in @languages@; do if test -d $$i; then echo; \ |
43 |
@for i in @languages@; do if test -d $$i; then echo; \ |
| 44 |
echo "==== Making the `cat $$i.txt` man pages. ===="; \ |
44 |
echo "==== Making the `cat $$i.txt` man pages. ===="; \ |
| 45 |
cd $$i; make -f ../Makefile; cd ..; \ |
45 |
cd $$i; $(MAKE) -f ../Makefile; cd ..; \ |
| 46 |
else echo "==== No $$i man pages found. ===="; fi; done |
46 |
else echo "==== No $$i man pages found. ===="; fi; done |
| 47 |
|
47 |
|
| 48 |
installsubdirs: |
48 |
installsubdirs: |
| 49 |
@for i in @languages@; do if test -d $$i; then echo; \ |
49 |
@for i in @languages@; do if test -d $$i; then echo; \ |
| 50 |
echo "==== Installing the `cat $$i.txt` man pages. ===="; \ |
50 |
echo "==== Installing the `cat $$i.txt` man pages. ===="; \ |
| 51 |
cd $$i; SLANG=/$$i; if test $$SLANG = /en; then SLANG= ; fi; \ |
51 |
cd $$i; SLANG=/$$i; if test $$SLANG = /en; then SLANG= ; fi; \ |
| 52 |
export SLANG; make -f ../Makefile install; cd ..; \ |
52 |
export SLANG; $(MAKE) -f ../Makefile install; cd ..; \ |
| 53 |
else echo "==== No $$i man pages found. ===="; fi; done |
53 |
else echo "==== No $$i man pages found. ===="; fi; done |
| 54 |
|
54 |
|
| 55 |
cleansubdirs: |
55 |
cleansubdirs: |