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

⟦c716f17a1⟧ TextFile

    Length: 853 (0x355)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/doc/manual/Makefile« 

TextFile

# Documentation building Makefile
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/doc/manual/RCS/Makefile,v 5.0 90/09/20 16:36:14 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:36:14  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



VOLS = volume0 volume1 volume2 volume3 
INPUTS = texinputs

default: all

all:
		@for x in $(VOLS) ; \
		do (echo "cd $$x;$(MAKE)"; cd $$x ; $(MAKE)); done

ps:
		@for x in $(VOLS); \
		do (echo "cd $$x; $(MAKE) $@"; cd $$x; $(MAKE) $@); done

clean tidy:
		@for x in $(VOLS) ; \
		do (echo "cd $$x; $(MAKE) $@"; cd $$x ; $(MAKE) $@ ); done
		rm -f core *.old *.BAK

define depend lint install:;