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

⟦58feefa08⟧ TextFile

    Length: 2519 (0x9d7)
    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/Tools/mlist/Makefile« 

TextFile

# List maintance tool
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/mlist/RCS/Makefile,v 5.0 90/09/20 16:27:47 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:27:47  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



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

HEADERS =       ../../h
LIBPP   =       ../../Lib/libpp.a
INCLUDE = -I$(HEADERS)
CFLAGS  = $(CCOPTIONS) $(LCF) -I$(HEADERS)
LDFLAGS = $(LDOPTIONS) $(LLF)

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

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

PROGS=xmlist

default: $(PROGS)

mlist:xmlist

xmlist: $(OBJS) $(LIBPP)
	rm -f $@
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBPP) $(LIBSYS)
	chmod u+s $@

lint: l-mlist

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

install: inst-dir inst-mlist

inst-dir: $(USRBINDIR)

inst-mlist: $(USRBINDIR)/mlist

$(USRBINDIR)/mlist: xmlist
	-$(BACKUP) $@ zxmlist
	$(INSTALL) xmlist $@
	-$(CHMOD) $(PGMPROT) $@
	-$(CHOWN) $(PPUSER) $@
	-rm -f $(USRBINDIR)/malias
	ln -s $@ $(USRBINDIR)/malias
	-@ls -ls $@ $(USRBINDIR)/malias
	-@echo "mlist and malias installed normally"; echo ""

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

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

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

# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow
mlist.o: mlist.c
mlist.o: ../../h/head.h
mlist.o: ../../h/util.h
mlist.o: ../../h/config.h
mlist.o: ../../h/ll_log.h
mlist.o: ../../h/retcode.h
mlist.o: ../../h/adr.h
mlist.o: ../../h/list_rchan.h
mlist.o: ../../h/chan.h
mlist.o: ../../h/table.h
mlist.o: ../../h/list_bpt.h
mlist.o: ../../h/auth.h
mlist.o: ../../h/list_bpt.h
mlist.o: ../../h/extension.h
mlist.o: ../../h/mta.h
mlist.o: ../../h/adr.h
mlist.o: ../../h/list_bpt.h
mlist.o: ../../h/or.h
mlist.o: ../../h/dl.h
mlist.o: ../../h/alias.h
mlist.o: ../../h/chan.h
mlist.o: ../../h/retcode.h
mlist.o: ../../h/ap.h
mlist.o: ../../h/util.h

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