|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 3071 (0xbff) Types: TextFile Names: »Makefile«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« └─⟦de7628f85⟧ └─⟦this⟧ »isode-6.0/doc/Makefile«
############################################################################### # Instructions to Make, for compilation of ISODE documentation tree ############################################################################### ############################################################################### # # $Header: /f/osi/doc/RCS/Makefile,v 7.2 89/12/06 17:29:24 mrose Exp $ # # # $Log: Makefile,v $ # Revision 7.2 89/12/06 17:29:24 mrose # isode6 # # Revision 7.1 89/11/24 14:50:57 mrose # practical # # Revision 7.0 89/11/24 14:43:20 mrose # Release 6.0 # ############################################################################### ############################################################################### # # 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 = cn-isdn comments cookbook ds duug ftam ifip88-quipu interim \ islands iso-migrate isode1 isode2 isode3 isode4 isode5 isode6 \ issues manual map-migrate monterey ncf nordunet osi-posix \ osi-update practical quipu ps reality rfcs trek tsap tsaptalk \ whitepages ################################################################## # 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:; itroff -man $(TOPDIR)isode-gen.8 @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) grind"; \ cd $$i; make $(MFLAGS) grind); \ done imp: true @make isode-gen.imp @for i in $(DIRS); \ do (echo "cd $$i; make $(MFLAGS) imp"; \ cd $$i; make $(MFLAGS) imp); \ done ps: true @make isode-gen.ps @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:; isode-gen.imp: $(TOPDIR)isode-gen.8 itroff -t -man $(TOPDIR)isode-gen.8 | catimp -i isode-gen.tmp mv isode-gen.tmp isode-gen.imp isode-gen.ps: $(TOPDIR)isode-gen.8 dotroff -t -man $(TOPDIR)isode-gen.8 > isode-gen.tmp mv isode-gen.tmp isode-gen.ps