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

⟦5438237fa⟧ TextFile

    Length: 1671 (0x687)
    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/INTERNET/Makefile« 

TextFile

# Installation file for the INTERNET basic setup
#
############################################################
#
# @(#) $Header$
#
# $Log$
#
############################################################
#
# Definitions
#
############################################################

TABLES	= \
	aliases	\
	auth.channel \
	auth.mta \
	auth.qmgr \
	auth.user \
	ch.list \
	ch.local \
	ch.shell \
	ch.uucp \
	ch.x400in84 \
	ch.x400in88 \
	ch.x400out84 \
	ch.x400out88 \
	channel \
	domain \
	foo \
	or \
	or2rfc \
	rfc1148gate \
	rfc2or \
	users

BUILD	= $(TABLES) README isoentities.add tailor
EXT	= I

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

default: build

install: build inst-tailor inst-tables


inst-tailor: tailor
	@sh -c "if [ -f $(TAILOR) ];\
	then echo $(TAILOR) already exists - installation aborted; exit 1;\
	else exit 0; \
	fi"
	cp tailor $(TAILOR)

inst-tables: $(TABLES)
	@sh -c "for i in $(TABLES);\
	do \
		if [ -f $(TBLDIR)/$$i ]; \
		then \
			echo mv $(TBLDIR)/$$i $(TBLDIR)/$$i.bak; \
			mv $(TBLDIR)/$$i $(TBLDIR)/$$i.bak || exit 1; \
		fi; \
		echo cp $$i $(TBLDIR); \
		cp $$i $(TBLDIR) || exit 1; \
	done"


rebuild: clean build

clean: ; rm -f $(BUILD)

build: $(BUILD)
$(BUILD):
	-@rm -f $@
	@sh -c "if [ -f ../master/$@-$(EXT) ]; then \
		echo ln ../master/$@-$(EXT) $@; \
		ln ../master/$@-$(EXT) $@ || exit 1; \
	else \
		echo ln ../master/$@ $@; \
		ln ../master/$@ $@ || exit 1; \
	fi"

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