DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦3d67ca76f⟧ TextFile

    Length: 2907 (0xb5b)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/doc/Makefile« 

TextFile

###############################################################################
#   Instructions to Make, for compilation of ISODE documentation tree
###############################################################################

###############################################################################
#
# $Header: /f/osi/doc/RCS/Makefile,v 6.0 89/03/18 23:27:12 mrose Rel $
#
#
# $Log:	Makefile,v $
# Revision 6.0  89/03/18  23:27:12  mrose
# Release 5.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 ftam ifip88-quipu interim \
		islands iso-migrate isode1 isode2 isode3 isode4 issues manual \
		map-migrate monterey ncf osi-posix osi-update quipu ps \
		reality rfcs trek tsap tsaptalk


##################################################################
# 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