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

⟦9e559e587⟧ TextFile

    Length: 2589 (0xa1d)
    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/list/Makefile« 

TextFile

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



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

HEADERS = ../../h
LIBPP   = ../../Lib/libpp.a
INCLUDE = -I$(HEADERS)

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

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

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

PROGS=xlist

default: $(PROGS)

list: xlist

xlist:  $(OBJS) $(LIBPP) 
	rm -f $@
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBPP) $(LIBSYS)

lint: l-list

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

install: inst-dir inst-list
inst-list: $(CHANDIR)/list
$(CHANDIR)/list: xlist
	   -$(BACKUP) $@ zxlist
	   rm -f $@
	   $(INSTALL) xlist $@
	   -$(CHMOD) $(PGMPROT) $@
	   -$(CHOWN) $(PPUSER) $@
	   -@ls -ls $@
	   -@echo "list channel installed normally"; echo ""

inst-dir: $(CHANDIR)

clean: tidy
	rm -f $(OBJS)

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

depend:
	$(DEPEND) $(INCLUDE) $(SRCS)

define:
	$(DEFINE) Makefile

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

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

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