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

⟦7dfa1bf09⟧ TextFile

    Length: 2398 (0x95e)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/doc/whitepages/Makefile« 

TextFile

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

###############################################################################
#
# $Header: /f/osi/doc/whitepages/RCS/Makefile,v 6.1 89/12/19 11:11:35 mrose Exp $
#
#
# $Log:	Makefile,v $
# 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 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:;