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

⟦876145f8c⟧ TextFile

    Length: 2857 (0xb29)
    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/Chans/uucp/Makefile« 

TextFile

# Makefile for UUCP channel
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Chans/uucp/RCS/Makefile,v 5.0 90/09/20 15:55:42 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  15:55:42  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



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

HEADERS =       ../../h
LIBPP   =       ../../Lib/libpp.a
INCLUDE =       -I$(HEADERS)

CFLAGS  = $(CCOPTIONS) $(LCF) $(INCLUDE)
LDFLAGS = $(LDOPTIONS) $(LLF)

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

PROGS = xuucp_out xrmail

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

default: $(PROGS)

############################################################
#
# UUCP out channel
#
############################################################

xuucp_out: rfc8222uu.o uucp_out.o $(LIBPP)
	   $(CC) $(LDFLAGS) -o $@ rfc8222uu.o uucp_out.o $(LIBPP) $(LIBSYS)

xt-rfc8222uu: rfc8222uu.o t-rfc8222uu.o $(LIBPP)
	     $(CC) $(LDFLAGS) -o $@ rfc8222uu.o t-rfc8222uu.o $(LIBPP) $(LIBSYS)

install: inst-dir inst-uucp-out
inst-uucp-out: $(CHANDIR)/uucp-out
$(CHANDIR)/uucp-out: xuucp_out
		-$(BACKUP) $@ zxuucp_out
		rm -f $@
		$(INSTALL) xuucp_out $@
		-$(CHMOD) $(PGMPROT) $@
		-$(CHOWN) $(PPUSER) $@
		-@ls -ls $@
		-@echo "UUCP outbound channel installed normally"; echo ""

inst-uucp-in: $(CHANDIR)/rmail
$(CHANDIR)/rmail: xrmail
		-$(BACKUP) $@ zxrmail
		rm -f $@
		$(INSTALL) xrmail $@
		-$(CHMOD) $(PGMPROT) $@
		-$(CHOWN) $(PPUSER) $@
		-@ls -ls $@
		-@echo "UUCP inbound channel (rmail) installed normally"; echo ""

inst-dir: $(CHANDIR)

############################################################
#
# UUCP in channel
#
############################################################

xrmail: rmail.o $(LIBPP)
	   $(CC) $(LDFLAGS) -o $@ rmail.o $(LIBPP) $(LIBSYS)

clean:    tidy
	  rm -f $(OBJS)
tidy:
	rm -f core a.out *.old zxuucp_out $(PROGS) *.BAK

lint: l-uucp-out l-rmail

l-uucp-out: rfc8222uu.c uucp-out.c true
	    $(LINT) $(LLFLAGS) rfc8222uu.c uucp-out.c $(LINTLIBS)

l-rmail: rmail.c true
	    $(LINT) $(LLFLAGS) rmail.c $(LINTLIBS)

depend:
	$(DEPEND) $(INCLUDE) $(SRCS)

define:
	$(DEFINE) Makefile

true:;

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

# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow

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