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

⟦e185d6f01⟧ TextFile

    Length: 6310 (0x18a6)
    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/Lib/qmgr/Makefile« 

TextFile

# Makefile to build the 822 addressing stuff
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Lib/qmgr/RCS/Makefile,v 5.0 90/09/20 16:22:44 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:22:44  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



SRCS =  Qmgr-ops.c Qmgr-stubs.c chan_control.c \
           chan_debug.c qstruct2qmgr.c recipstate.c \
           submit2qmgr.c Qmgr-chanops.c
OBJS =  Qmgr-ops.o Qmgr-stubs.o chan_control.o \
           chan_debug.o qstruct2qmgr.o recipstate.o \
           submit2qmgr.o Qmgr-chanops.o

HEADERS         = ../../h

CFLAGS          = $(LIBCCOPTIONS) -I$(HEADERS) $(LCF)
LLFLAGS         = $(LINTFLAGS) -I$(HEADERS) -u
SHADOW          = qmgr-made

LINTLIBS        = ../addr/llib-laddr.ln \
		  ../format/llib-lfmt.ln \
		  ../io/llib-lio.ln \
		  ../or/llib-lor.ln \
		  ../pp/llib-lpp.ln \
		  ../table/llib-ltable.ln \
		  ../tai/llib-ltai.ln \
		  ../util/llib-lutil.ln \
		  ../parse/llib-lparse.ln


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

default: $(SHADOW)

$(SHADOW): $(OBJS) QMGR-O QMGRP1-O
	$(AR) r$(ARFLAGS) ../libpp.a $(OBJS) $(QMGR-O) $(QMGRP1-O)
	touch $@

Qmgr-asn.py: qmgr.ry
	$(ROSY) $(RYFLAGS) -o $@ qmgr.ry
	-cmp -s Qmgr-ops.h ../../h/Qmgr-ops.h || cp Qmgr-ops.h ../../h

Qmgr-types.h: Qmgr-types.py

Qmgr-types.py: Qmgr-asn.py
	$(POSY) -f -h $(POFLAGS) -o $@ Qmgr-asn.py
	-cmp -s Qmgr-types.h ../../h/Qmgr-types.h || cp Qmgr-types.h ../../h

Qmgr-types.c: Qmgr-types.py QmgrP1-types.c
	$(PEPY) -a PY_advise $(PYFLAGS) -o $@ Qmgr-types.py

Qmgr-ops.o: Qmgr-ops.c
	$(CC) $(CFLAGS) -DPERFORMER -DINVOKER -c Qmgr-ops.c

Qmgr-chanops.o: Qmgr-chanops.c
	$(CC) $(CFLAGS) -DPERFORMER -c Qmgr-chanops.c

#Qmgr-stubs.c Qmgr-ops.h Qmgr-ops.c: Qmgr-types.c
Qmgr-stubs.c Qmgr-ops.h Qmgr-ops.c: QMGR-C QMGRP1-C


QmgrP1-types.c: QmgrP1-types.py
	$(PEPY) -a PY_advise $(PYFLAGS) -o $@ $?

QmgrP1-types.py: QmgrP1.py
	$(POSY) -f -h $(POFLAGS) -o $@ $?
	-cmp -s QmgrP1-types.h ../../h/QmgrP1-types.h || cp QmgrP1-types.h ../../h

QmgrP1-types.h: QmgrP1-types.py

#
# Split version - coming soon.
#
QMGR-O	= QMGR-[0-9]*.o
QMGR-C	= QMGR-[0-9]*.c

QMGR-O:	QMGR-C
	@$(MAKE) `/bin/ls $(QMGR-C) | sed 's/\.c$$/.o/'`
	-@touch $@

QMGR-C:	Qmgr-types.py
	-@rm -f $(QMGR-O) $(QMGR-C)
	$(PEPY) $(PYFLAGS) -a PY_advise -b QMGR Qmgr-types.py
	-@touch $@

QMGRP1-O	= QMGRP1-[0-9]*.o
QMGRP1-C	= QMGRP1-[0-9]*.c

QMGRP1-O: QMGRP1-C
	@$(MAKE) `/bin/ls $(QMGRP1-C) | sed 's/\.c$$/.o/'`
	-@touch $@

QMGRP1-C: QmgrP1-types.py
	-@rm -f $(QMGRP1-O) $(QMGRP1-C)
	$(PEPY) $(PYFLAGS) -a PY_advise -b QMGRP1 QmgrP1-types.py
	-@touch $@


lintlib: llib-lqmgr.ln
llib-lqmgr.ln: $(SRCS)
	$(LINT) -Cqmgr $(LLFLAGS) $(SRCS)

install:;

lint: $(SRCS)
	$(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS) $(LINTISODE)

clean: tidy
	rm -f $(OBJS) QMGR-* QMGRP1-* QmgrP1-* llib-lqmgr.ln
	rm -f Qmgr-asn.py Qmgr-chanops.o Qmgr-ops.c Qmgr-ops.h Qmgr-ops.o
	rm -f Qmgr-stubs.c Qmgr-stubs.o Qmgr-types.h Qmgr-types.py

tidy:
	rm -f core $(SHADOW) *.old *.BAK *.ph

define:
	$(DEFINE) Makefile

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

############################################################
#
# End of building rules
#
############################################################
#

# DEPENDENCIES MUST END AT END OF FILE
# IF YOU PUT STUFF HERE IT WILL GO AWAY
# see make depend above
# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow
Qmgr-ops.o: Qmgr-ops.c
Qmgr-ops.o: ./Qmgr-ops.h
Qmgr-ops.o: ./Qmgr-types.h
Qmgr-ops.o: ./QmgrP1-types.h
Qmgr-stubs.o: Qmgr-stubs.c
Qmgr-stubs.o: ./Qmgr-ops.h
Qmgr-stubs.o: ./Qmgr-types.h
Qmgr-stubs.o: ./QmgrP1-types.h
chan_control.o: chan_control.c
chan_control.o: ../../h/qmgr.h
chan_control.o: ../../h/Qmgr-types.h
chan_control.o: ../../h/QmgrP1-types.h
chan_control.o: ../../h/Qmgr-ops.h
chan_control.o: ../../h/retcode.h
chan_control.o: ../../h/ll_log.h
chan_debug.o: chan_debug.c
chan_debug.o: ../../h/util.h
chan_debug.o: ../../h/config.h
chan_debug.o: ../../h/ll_log.h
chan_debug.o: ../../h/qmgr.h
chan_debug.o: ../../h/Qmgr-types.h
chan_debug.o: ../../h/QmgrP1-types.h
chan_debug.o: ../../h/Qmgr-ops.h
qstruct2qmgr.o: qstruct2qmgr.c
qstruct2qmgr.o: ../../h/util.h
qstruct2qmgr.o: ../../h/config.h
qstruct2qmgr.o: ../../h/ll_log.h
qstruct2qmgr.o: ./Qmgr-types.h
qstruct2qmgr.o: ./QmgrP1-types.h
qstruct2qmgr.o: ./QmgrP1-types.h
qstruct2qmgr.o: ../../h/q.h
qstruct2qmgr.o: ../../h/adr.h
qstruct2qmgr.o: ../../h/list_rchan.h
qstruct2qmgr.o: ../../h/chan.h
qstruct2qmgr.o: ../../h/table.h
qstruct2qmgr.o: ../../h/list_bpt.h
qstruct2qmgr.o: ../../h/auth.h
qstruct2qmgr.o: ../../h/list_bpt.h
qstruct2qmgr.o: ../../h/extension.h
qstruct2qmgr.o: ../../h/mta.h
qstruct2qmgr.o: ../../h/adr.h
qstruct2qmgr.o: ../../h/list_bpt.h
qstruct2qmgr.o: ../../h/mta.h
qstruct2qmgr.o: ../../h/prm.h
recipstate.o: recipstate.c
recipstate.o: ../../h/util.h
recipstate.o: ../../h/config.h
recipstate.o: ../../h/ll_log.h
recipstate.o: ../../h/qmgr.h
recipstate.o: ../../h/Qmgr-types.h
recipstate.o: ../../h/QmgrP1-types.h
recipstate.o: ../../h/Qmgr-ops.h
submit2qmgr.o: submit2qmgr.c
submit2qmgr.o: ../../h/head.h
submit2qmgr.o: ../../h/util.h
submit2qmgr.o: ../../h/config.h
submit2qmgr.o: ../../h/ll_log.h
submit2qmgr.o: ../../h/retcode.h
submit2qmgr.o: ../../h/qmgr.h
submit2qmgr.o: ../../h/Qmgr-types.h
submit2qmgr.o: ../../h/QmgrP1-types.h
submit2qmgr.o: ../../h/Qmgr-ops.h
submit2qmgr.o: ../../h/q.h
submit2qmgr.o: ../../h/adr.h
submit2qmgr.o: ../../h/list_rchan.h
submit2qmgr.o: ../../h/chan.h
submit2qmgr.o: ../../h/table.h
submit2qmgr.o: ../../h/list_bpt.h
submit2qmgr.o: ../../h/auth.h
submit2qmgr.o: ../../h/list_bpt.h
submit2qmgr.o: ../../h/extension.h
submit2qmgr.o: ../../h/mta.h
submit2qmgr.o: ../../h/adr.h
submit2qmgr.o: ../../h/list_bpt.h
submit2qmgr.o: ../../h/mta.h
submit2qmgr.o: ../../h/prm.h
Qmgr-chanops.o: Qmgr-chanops.c
Qmgr-chanops.o: ./Qmgr-ops.h
Qmgr-chanops.o: ./Qmgr-types.h
Qmgr-chanops.o: ./QmgrP1-types.h

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