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

⟦461803c22⟧ TextFile

    Length: 1504 (0x5e0)
    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/Uip/sendmail/Makefile« 

TextFile

# Sendmail Fake 
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Uip/sendmail/RCS/Makefile,v 5.0 90/09/20 16:34:54 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:34:54  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



SRCS	= sendmail.c
OBJS	= sendmail.o

HEADERS	=	../../h
LIBPP	=	../../Lib/libpp.a

CFLAGS	= $(CCOPTIONS) -I$(HEADERS)
LDFLAGS	= $(LDOPTIONS)

LLFLAGS = $(LINTFLAGS) -I$(HEADERS)
LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE)

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

default: sendmail

sendmail: xsendmail

xsendmail: $(OBJS) $(LIBPP)
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBPP) $(LIBSYS)

install: inst-sendmail

inst-sendmail: $(CMDDIR)/sendmail
$(CMDDIR)/sendmail: xsendmail
	-$(BACKUP) $@ zxsendmail
	rm -f $@
	$(INSTALL) xsendmail $@
	-@$(CHMOD) $(PGMPROT) $@
	-@ls -ls $@
	-@echo "Sendmail fake installed normally"; echo ""

clean: tidy
tidy:
	rm -f $(OBJS) core a.out Makefile.old x* z*

lint: l-sendmail

l-sendmail: $(SRCS)
	$(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS)

depend:
	$(DEPEND) -I$(HEADERS) $(SRCS)

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