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

⟦c118d7ae6⟧ TextFile

    Length: 2575 (0xa0f)
    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/qmgrDisable/Makefile« 

TextFile

# qmgrDisable: Makefile
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/qmgrDisable/RCS/Makefile,v 5.0 90/09/20 16:30:46 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:30:46  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



SRCS =  qmgrDisable.c 
OBJS =  qmgrDisable.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 -lisode

PROGS = xqmgrDisable

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

default: $(PROGS)

############################################################
#
# qmgrDisable
#
############################################################

qmgrDisable: xqmgrDisable
xqmgrDisable: $(OBJS) $(LIBPP)
	    rm -f $@
	    $(CC) $(LDFLAGS) -o $@ $(OBJS) \
		  $(LIBPP) $(LIBSYS) 

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

install: inst-dir inst-qmgrDisable
inst-qmgrDisable: $(TOOLDIR)/qmgrDisable
$(TOOLDIR)/qmgrDisable: xqmgrDisable
	-$(BACKUP) $@ zxqmgrDisable
	rm -f $@
	$(INSTALL) xqmgrDisable $@
	-$(CHMOD) $(PGMPROT) $@
	-$(CHOWN) $(PPUSER) $@
	-@ls -ls $@
	-@echo "qmgrDisable installed normally"; echo ""

inst-dir: $(TOOLDIR)

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


lint: l-qmgrDisable

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

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

define:
	$(DEFINE) Makefile

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

# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow
qmgrDisable.o: qmgrDisable.c
qmgrDisable.o: ../../h/util.h
qmgrDisable.o: ../../h/config.h
qmgrDisable.o: ../../h/ll_log.h
qmgrDisable.o: ../../h/chan.h
qmgrDisable.o: ../../h/table.h
qmgrDisable.o: ../../h/list_bpt.h
qmgrDisable.o: ../../h/Qmgr-types.h
qmgrDisable.o: ../../h/QmgrP1-types.h
qmgrDisable.o: ../../h/Qmgr-ops.h

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