Browse CVS Repository
Contents of /satellite/satellite2/doc/Makefile
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1.1.1 -
( show annotations)
( download)
(vendor branch)
Fri Mar 26 14:57:12 2004 UTC
(20 years ago)
by orrisroot
Branch: MAIN, satellite2
CVS Tags: RELEASE_2_95, first, HEAD
Changes since 1.1: +0 -0 lines
Import satellite version 2.9x sources and documents into CVS.
| 1 |
RM = rm -f |
| 2 |
|
| 3 |
MODULEDIRS = shell system ispp bps gpm npe ncs dcm prog_guide |
| 4 |
ALLMANDIRS = reference usersman |
| 5 |
|
| 6 |
all: module-man all-man |
| 7 |
|
| 8 |
module-man: |
| 9 |
@for i in $(MODULEDIRS); do \ |
| 10 |
(cd $$i && $(MAKE) all) \ |
| 11 |
done |
| 12 |
|
| 13 |
all-man: |
| 14 |
@for i in $(ALLMANDIRS); do \ |
| 15 |
(cd $$i && $(MAKE) all) \ |
| 16 |
done |
| 17 |
|
| 18 |
distclean: |
| 19 |
$(RM) *.aux *.dvi *.ps *.log *.toc *.idx *~ |
| 20 |
@for i in $(MODULEDIRS) $(ALLMANDIRS); do \ |
| 21 |
(cd $$i && make distclean) \ |
| 22 |
done |
| 23 |
|
| 24 |
clean: distclean |
|