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

⟦010687d7a⟧ TextFile

    Length: 3069 (0xbfd)
    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/Format/rfc934/Makefile« 

TextFile

# Makefile for rfc934 filter channel
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Format/rfc934/RCS/Makefile,v 5.0 90/09/20 16:02:59 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:02:59  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



SRCS =  do-rfc934.c rfc934.c
OBJS =  do-rfc934.o rfc934.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   = xrfc934 


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

default: $(PROGS)

############################################################
#
# rfc934 filter
#
############################################################

rfc934: xrfc934

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



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

install: inst-dir inst-rfc934

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

inst-dir: $(CHANDIR)

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

lint: l-rfc934

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

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