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

⟦d0a8ee86c⟧ TextFile

    Length: 3924 (0xf54)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦697af93db⟧ »EurOpenD3/network/snmp/mit-snmp.tar.Z« 
        └─⟦57bbcbe75⟧ 
            └─⟦this⟧ »./snmp/Makefile« 
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦925ee6880⟧ »EurOpenD3/network/snmp/mit-snmp.900225.tar.Z« 
        └─⟦a4bfa469c⟧ 
            └─⟦this⟧ »./snmp/Makefile« 

TextFile


#
#	$Header: Makefile,v 1.1 89/01/11 22:08:08 jrd Exp $
#	Author: J. Davin
#	Copyright 1988, 1989, Massachusetts Institute of Technology
#	See permission and disclaimer notice in file "notice.h"
#

#
#
#	Compile-time flags:
#
#	INLINE		Selected portions of code are compiled
#			inline instead of generating procedure
#			calls.
#
#	DEBUG		A variety of print statements, and
#			other gizmos generally useful to debugging
#			are included in the code.
#
#	SAFE		The caller of certain library functions
#			is known to pass only "safe" argument
#			values. Code for checking such argument
#			values is omitted.
#
#	CLIENT		Generate only that SNMP protocol code
#			required by an SNMP client.
#
#	SERVER		Generate only that SNMP protocol code
#			required by an SNMP server.
#

CFLAGS		=	-O
CDEFS		=	-DINLINE
RCSCMD		=	rlog -L -h

INCDIRS		=	-I.

OBJECTS =	rdx.o \
		mis.o \
		aps.o \
		ap0.o \
		asn.o \
		asl.o \
		miv0.o \
		miv1.o \
		miv2.o \
		miv3.o \
		miv4.o \
		miv5.o \
		miv6.o \
		miv7.o \
		avl.o \
		smp.o \
		asx.o \
		vec.o \
		oid.o \
		smx.o \
		mix.o

SOURCES	=	rdx.c \
		mis.c \
		aps.c \
		ap0.c \
		asn.c \
		asl.c \
		miv0.c \
		miv1.c \
		miv2.c \
		miv3.c \
		miv4.c \
		miv5.c \
		miv6.c \
		miv7.c \
		avl.c \
		smp.c \
		asx.c \
		vec.c \
		oid.c \
		smx.c \
		mix.c

HEADERS	=	ctypes.h \
		rdx.h \
		debug.h \
		error.h \
		local.h \
		mis.h \
		aps.h \
		ap0.h \
		smp.h \
		asn.h \
		asndefs.h \
		asl.h \
		asldefs.h \
		miv.h \
		avl.h \
		asx.h \
		vec.h \
		oid.h \
		smx.h \
		mix.h

.c.o:
		cc $(CFLAGS) $(CDEFS) $(INCDIRS) -c $<

all:		libsnmp.a

lintlib:	llib-lsnmp.ln

libsnmp.a:	$(OBJECTS)
		ar r $@ $?
		ranlib $@

llib-lsnmp.ln:	$(SOURCES) $(HEADERS)
		lint -Csnmp $(INCDIRS) $(SOURCES)

depend:
		makedepend -- $(CDEFS) $(INCDIRS) -- $(SOURCES)


lint:		$(SOURCES) $(HEADERS)
		lint $(CDEFS) $(INCDIRS) $(SOURCES)

clean:
		rm -f libsnmp.a llib-lsnmp.ln $(OBJECTS) Makefile.bak core

$(SOURCES) $(HEADERS):
		co $@

rcs:
		$(RCSCMD) Makefile $(SOURCES) $(HEADERS)

# DO NOT DELETE THIS LINE -- make depend depends on it.

rdx.o: notice.h ctypes.h rdx.h
mis.o: notice.h ctypes.h error.h local.h mis.h mix.h asn.h asndefs.h asl.h
mis.o: asldefs.h smp.h aps.h avl.h
aps.o: notice.h ctypes.h aps.h error.h asn.h asndefs.h asl.h asldefs.h
aps.o: local.h
ap0.o: notice.h ctypes.h aps.h error.h asn.h asndefs.h asl.h asldefs.h
asn.o: notice.h debug.h ctypes.h local.h asn.h asndefs.h asl.h asldefs.h
asl.o: notice.h ctypes.h debug.h asn.h asndefs.h asl.h asldefs.h
miv0.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv0.o: smp.h aps.h mis.h
miv1.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv1.o: smp.h aps.h mis.h
miv2.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv2.o: smp.h aps.h mis.h
miv3.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv3.o: smp.h aps.h mis.h
miv4.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv4.o: smp.h aps.h mis.h
miv5.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv5.o: smp.h aps.h mis.h
miv6.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv6.o: smp.h aps.h mis.h
miv7.o: notice.h ctypes.h error.h miv.h mix.h asn.h asndefs.h asl.h asldefs.h
miv7.o: smp.h aps.h mis.h
avl.o: notice.h ctypes.h debug.h local.h avl.h error.h
smp.o: notice.h ctypes.h local.h debug.h smp.h error.h aps.h asn.h asndefs.h
smp.o: asl.h asldefs.h mix.h avl.h mis.h
asx.o: notice.h ctypes.h debug.h asn.h asndefs.h asl.h asldefs.h asx.h
asx.o: error.h
vec.o: notice.h ctypes.h debug.h vec.h
oid.o: notice.h ctypes.h debug.h rdx.h oid.h
smx.o: notice.h /usr/include/ctype.h ctypes.h local.h debug.h smp.h error.h
smx.o: aps.h asn.h asndefs.h asl.h asldefs.h smx.h oid.h
mix.o: notice.h mix.h ctypes.h error.h asn.h asndefs.h asl.h asldefs.h smp.h
mix.o: aps.h avl.h debug.h local.h