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

⟦e7c216f3e⟧ TextFile

    Length: 3787 (0xecb)
    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/timeout/Makefile« 

TextFile

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



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

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

CFLAGS  = $(CCOPTIONS) $(LCF) -I$(HEADERS)
LDFLAGS = $(LDOPTIONS) $(LLF)
MAKE    = ./make

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

PROGS   = xtimeout

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

default: $(PROGS)

############################################################
#
# Msg timeout
#
############################################################

timeout: xtimeout

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

############################################################
#
# Misc stuff
#
############################################################


install: inst-dir inst-timeout

inst-timeout: $(CHANDIR)/timeout
$(CHANDIR)/timeout: xtimeout
	-$(BACKUP) $@ zxtimeout
	rm -f $@
	$(INSTALL) xtimeout $@
	-$(CHMOD) $(PGMPROT) $@
	-$(CHOWN) $(PPUSER) $@
	-@ls -ls $@
	-@echo "timeout channel installed normally"; echo ""

inst-dir: $(CHANDIR)

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

lint: l-timeout

l-timeout: $(SRCS) true
	$(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS)

define:
	$(DEFINE) Makefile

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

true:;

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

# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow
timeout.o: timeout.c
timeout.o: ../../h/head.h
timeout.o: ../../h/util.h
timeout.o: ../../h/config.h
timeout.o: ../../h/ll_log.h
timeout.o: ../../h/retcode.h
timeout.o: ../../h/dbase.h
timeout.o: ../../h/config.h
timeout.o: ../../h/qmgr.h
timeout.o: ../../h/Qmgr-types.h
timeout.o: ../../h/QmgrP1-types.h
timeout.o: ../../h/Qmgr-ops.h
timeout.o: ../../h/q.h
timeout.o: ../../h/adr.h
timeout.o: ../../h/list_rchan.h
timeout.o: ../../h/chan.h
timeout.o: ../../h/table.h
timeout.o: ../../h/list_bpt.h
timeout.o: ../../h/auth.h
timeout.o: ../../h/list_bpt.h
timeout.o: ../../h/extension.h
timeout.o: ../../h/mta.h
timeout.o: ../../h/adr.h
timeout.o: ../../h/list_bpt.h
timeout.o: ../../h/mta.h
timeout.o: ../../h/dr.h
timeout.o: ../../h/extension.h
timeout.o: ../../h/mta.h
timeout.o: ../../h/prm.h
timeout.o: timeout.c
timeout.o: ../../h/head.h
timeout.o: ../../h/util.h
timeout.o: ../../h/config.h
timeout.o: ../../h/ll_log.h
timeout.o: ../../h/retcode.h
timeout.o: ../../h/dbase.h
timeout.o: ../../h/config.h
timeout.o: ../../h/qmgr.h
timeout.o: ../../h/Qmgr-types.h
timeout.o: ../../h/QmgrP1-types.h
timeout.o: ../../h/Qmgr-ops.h
timeout.o: ../../h/q.h
timeout.o: ../../h/adr.h
timeout.o: ../../h/list_rchan.h
timeout.o: ../../h/chan.h
timeout.o: ../../h/table.h
timeout.o: ../../h/list_bpt.h
timeout.o: ../../h/auth.h
timeout.o: ../../h/list_bpt.h
timeout.o: ../../h/extension.h
timeout.o: ../../h/mta.h
timeout.o: ../../h/adr.h
timeout.o: ../../h/list_bpt.h
timeout.o: ../../h/mta.h
timeout.o: ../../h/dr.h
timeout.o: ../../h/extension.h
timeout.o: ../../h/mta.h
timeout.o: ../../h/prm.h

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