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

⟦34aca378f⟧ TextFile

    Length: 952 (0x3b8)
    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/examples/Makefile« 

TextFile

# Channel master makefile
#
############################################################
#
# @(#) $Header: Makefile,v 4.1 90/02/06 12:37:06 pp Exp $
#
# $Log:	Makefile,v $
# Revision 4.1  90/02/06  12:37:06  pp
# rcsforce : 4.1-distribution
#
############################################################
#
# Definitions
#
############################################################

MAKE    = ./make
SUBDIRS	= master LOCALSMTP INTERNET JANET

############################################################
#
# Building Rules
#
############################################################

target:
	@for i in ${SUBDIRS} ; \
	do (echo "cd $$i; $(MAKE)"; cd $$i; $(MAKE)); done

tidy define depend clean lint:
	@for i in ${SUBDIRS} ; \
	do (echo "cd $$i; $(MAKE) $@"; cd $$i; $(MAKE) $@); done

install:;

############################################################
#
# End of Building Rules
#
############################################################