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

⟦9381158b3⟧ TextFile

    Length: 625 (0x271)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦2fafebccf⟧ »EurOpenD3/mail/smail3.1.19.tar.Z« 
        └─⟦bcd2bc73f⟧ 
            └─⟦this⟧ »contrib/execm/Makefile« 

TextFile

# Makefile for execm
# @(#)Makefile	1.1 9/10/88 14:49:20

SHELL	= /bin/sh
COPY    = cp
CFLAGS	= -O
LDFLAGS = -i
LIBMAIL = /usr/lib/mail
EXECMAIL= $(LIBMAIL)/execmail

all:    execm

execm:  execm.c
	$(CC) $(CFLAGS) $(LDFLAGS) execm.c -o execm

install: $(EXECMAIL)

$(EXECMAIL): execm
	@if [ ! -d $(LIBMAIL) ]; then \
		echo "I don't think this is a Xenix system."; \
		exit 1; \
	fi
	@if [ ! -f $(EXECMAIL).x ]; then \
		echo "Saving $(EXECMAIL) as $(EXECMAIL).x"; \
		(set -x; mv $(EXECMAIL) $(EXECMAIL).x); \
		exit $?; \
	fi
	$(COPY) execm $(EXECMAIL)
	chgrp bin $(EXECMAIL)
	chown bin $(EXECMAIL)
	chmod 755 $(EXECMAIL)