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

⟦5d2444dec⟧ TextFile

    Length: 3846 (0xf06)
    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/trashman/Makefile« 

TextFile

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



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

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

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

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

PROGS   = xtrash

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

default: $(PROGS)

############################################################
#
# trash clean out
#
############################################################

trash-channel: xtrash

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

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


install: inst-dir inst-trash

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

inst-dir: $(CHANDIR)


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

lint: l-trash_channel

l-trash_channel: $(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
trash-channel.o: trash-channel.c
trash-channel.o: ../../h/head.h
trash-channel.o: ../../h/util.h
trash-channel.o: ../../h/config.h
trash-channel.o: ../../h/ll_log.h
trash-channel.o: ../../h/retcode.h
trash-channel.o: ../../h/qmgr.h
trash-channel.o: ../../h/Qmgr-types.h
trash-channel.o: ../../h/QmgrP1-types.h
trash-channel.o: ../../h/Qmgr-ops.h
trash-channel.o: ../../h/q.h
trash-channel.o: ../../h/adr.h
trash-channel.o: ../../h/list_rchan.h
trash-channel.o: ../../h/chan.h
trash-channel.o: ../../h/table.h
trash-channel.o: ../../h/list_bpt.h
trash-channel.o: ../../h/auth.h
trash-channel.o: ../../h/list_bpt.h
trash-channel.o: ../../h/extension.h
trash-channel.o: ../../h/mta.h
trash-channel.o: ../../h/adr.h
trash-channel.o: ../../h/list_bpt.h
trash-channel.o: ../../h/mta.h
trash-channel.o: ../../h/prm.h
trash-channel.o: trash-channel.c
trash-channel.o: ../../h/head.h
trash-channel.o: ../../h/util.h
trash-channel.o: ../../h/config.h
trash-channel.o: ../../h/ll_log.h
trash-channel.o: ../../h/retcode.h
trash-channel.o: ../../h/qmgr.h
trash-channel.o: ../../h/Qmgr-types.h
trash-channel.o: ../../h/QmgrP1-types.h
trash-channel.o: ../../h/Qmgr-ops.h
trash-channel.o: ../../h/q.h
trash-channel.o: ../../h/adr.h
trash-channel.o: ../../h/list_rchan.h
trash-channel.o: ../../h/chan.h
trash-channel.o: ../../h/table.h
trash-channel.o: ../../h/list_bpt.h
trash-channel.o: ../../h/auth.h
trash-channel.o: ../../h/list_bpt.h
trash-channel.o: ../../h/extension.h
trash-channel.o: ../../h/mta.h
trash-channel.o: ../../h/adr.h
trash-channel.o: ../../h/list_bpt.h
trash-channel.o: ../../h/mta.h
trash-channel.o: ../../h/prm.h

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