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

⟦5a71b6cce⟧ TextFile

    Length: 2026 (0x7ea)
    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/mail/Makefile« 

TextFile

# Dummmm v6-like mail interface
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Uip/mail/RCS/Makefile,v 5.0 90/09/20 16:33:05 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:33:05  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



SRCS =  mail.c mail.c
OBJS =  mail.o
# DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT

HEADERS         = ../../h
LIBPP   = ../../Lib/libpp.a
CFLAGS          = $(CCOPTIONS) $(LCF) -I$(HEADERS)
LDFLAGS         = $(LDOPTIONS) $(LLF)
LLFLAGS         = $(LINTFLAGS) -I$(HEADERS)
LINTLIBS        = ../../lib/llib-lpp.ln $(LINTISODE)

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

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

clean: tidy
	rm -f $(OBJS)

tidy:
	rm -f zxmail xmail core* a.out *.old *.BAK


install: inst-dir inst-mail

inst-dir: $(CMDDIR)

inst-mail: $(CMDDIR)/mail
$(CMDDIR)/mail: xmail
	-$(BACKUP) $@ zxmail
	rm -f $@
	$(INSTALL) xmail $@
	-$(CHMOD) $(PGMPROT) $@
	-$(CHOWN) $(PPUSER) $@
	-@ls -ls $@
	-@echo "Mail installed normally"; echo ""

lint: $(SRCS)
	$(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS)


define:
	$(DEFINE) Makefile

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


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

# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow
mail.o: mail.c
mail.o: ../../h/util.h
mail.o: ../../h/config.h
mail.o: ../../h/ll_log.h
mail.o: ../../h/retcode.h
mail.o: mail.c
mail.o: ../../h/util.h
mail.o: ../../h/config.h
mail.o: ../../h/ll_log.h
mail.o: ../../h/retcode.h

# DEPENDENCIES MUST END AT END OF FILE
# IF YOU PUT STUFF HERE IT WILL GO AWAY
# see make depend above