############################################################################### # Instructions to Make, for compilation of ISODE documentation tree ############################################################################### ############################################################################### # # $Header: /var/lib/cvsd/repos/CSRG/43BSDReno/contrib/isode-beta/doc/whitepages/Makefile,v 1.1.1.1 2018/04/24 16:12:56 root Exp $ # # # $Log: Makefile,v $ # Revision 1.1.1.1 2018/04/24 16:12:56 root # BSD 4.3reno # # Revision 6.3 90/07/09 14:33:29 mrose # sync # # Revision 6.2 90/05/04 17:38:30 mrose # report-2 # # Revision 6.1 89/12/19 11:11:35 mrose # pilot # ############################################################################### ############################################################################### # # NOTICE # # Acquisition, use, and distribution of this module and related # materials are subject to the restrictions of a license agreement. # Consult the Preface in the User's Manual for the full terms of # this agreement. # ############################################################################### DIRS = administrator introduction pilot report-1 report-2 user ################################################################## # Here it is... ################################################################## all:; @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) all"; \ cd $$i; make $(MFLAGS) all); \ done inst-all:; @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) inst-all"; \ cd $$i; make $(MFLAGS) inst-all); \ done install:; @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) install"; \ cd $$i; make $(MFLAGS) install); \ done lint:; @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) lint"; \ cd $$i; make $(MFLAGS) lint); \ done clean:; rm -f _* *.tmp *.imp *.ps @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) clean"; \ cd $$i; make $(MFLAGS) clean); \ done grind:; @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) grind"; \ cd $$i; make $(MFLAGS) grind); \ done imp: true @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) imp"; \ cd $$i; make $(MFLAGS) imp); \ done ps: true @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) ps"; \ cd $$i; make $(MFLAGS) ps); \ done preview:; @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) preview"; \ cd $$i; make $(MFLAGS) preview); \ done true:;