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

⟦8a4931ff2⟧ TextFile

    Length: 1513 (0x5e9)
    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/rcvtrip/Makefile« 

TextFile

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



SRCS	= rcvtrip.c
OBJS	= rcvtrip.o

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
#
############################################################

default: rcvtrip

install: inst-rcvtrip

inst-rcvtrip: $(USRBINDIR)/rcvtrip

$(USRBINDIR)/rcvtrip: xrcvtrip
	-$(BACKUP) $@ zrcvtrip
	rm -f $@
	$(INSTALL) xrcvtrip $@
	-$(CHMOD) $(PGMPROT) $@
	-@ls -ls $@
	-@echo "rcvtrip program installed normally"; echo ""

rcvtrip: xrcvtrip

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

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

lint: l-rcvtrip

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

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

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