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

⟦c5414fb87⟧ TextFile

    Length: 2517 (0x9d5)
    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/Tools/mpp88/Makefile« 

TextFile

# mpp88
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/mpp88/RCS/Makefile,v 5.0 90/09/20 16:28:51 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:28:51  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



LIBPP	= ../../Lib/libpp.a

SOCKET =

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

############################################################
#
# Suffix rules
#
############################################################

PROGS   = xmpp88

##################################################################
# mpp88
##################################################################

SRCS	= AUTHEN-print.c TOKENS-print.c MTA-print.c EXTENT-print.c TRANS-print.c P2-print.c mpp88.c
OBJS	= AUTHEN-print.o TOKENS-print.o MTA-print.o EXTENT-print.o TRANS-print.o P2-print.o mpp88.o


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

install: inst-dir inst-mpp88
inst-dir: $(TOOLDIR)
inst-mpp88: $(TOOLDIR)/mpp88
$(TOOLDIR)/mpp88: xmpp88
	-$(BACKUP) $@ zxmpp88
	rm -f $@
	$(INSTALL) xmpp88 $@
	-$(CHMOD) $(PGMPROT) $@
	-$(CHOWN) $(PPUSER) $@
	-@ls -ls $@
	-@echo "mpp88 tool installed normally"; echo ""



cfiles:		$(SRCS)

AUTHEN-print.c:authen.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ -S PRINT authen.py
TOKENS-print.c:tokens.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ -S PRINT tokens.py
MTA-print.c:mta.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ -S PRINT mta.py
EXTENT-print.c:extent.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ -S PRINT extent.py
TRANS-print.c:transfer.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ -S PRINT transfer.py
P2-print.c:p2.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ -S PRINT p2.py

mpp88.c:mpp88.py
		$(PEPY) $(PYFLAGS) -a PY_advise -o $@ mpp88.py



################################################################
# clean
################################################################

clean:  tidy
	rm -f $(SRCS) $(OBJS) *.ph

tidy:
	rm -f *.a  _* core xmpp88 *.BAK *.old zx*

depend: ;
define: ;


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

# DO NOT DELETE THIS LINE
# Dependencies follow

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