.include vcs.cfg
######################################################################
# @(#) mib_makefile V6.2.3:cs.622.make:1:1 Mon Nov 11 16:39:36 1991 Make file for MSP
######################################################################
#
#	Management Services Process Makefile
#
#	Makefile for MSP Core Modules
#
#	File:		mib_makefile
#	Created:	12/01/89
#
#	Version:	V6.2.3	Mon Nov 11 16:39:36 1991
#	Last Modified:	cs.622.make	08/06/91
#	
#	Make file for MSP
#
#	Modification History:
#
#	*** Updated to SMT 6.2 ***
#
######################################################################
#
#	This makefile assumes that there exists a parent directory with the
#	following subdirectory structure:
#
#			PARENT
#			 |
#		 +-------+-------+----------+----------+
#		 |	 |	 |	    |          |
#		csp	fbm	mib	INTERFACE    headers
#				 	    |
#				+-------+-------+------+
#				|       |       |      |
#			       csp     fbm     mib   headers
#
#
#	Fill in the following macro definitions or pass them
#	in through the command line:
#
#	PARENT directory:
PARENT=..

#	MSP interface file directory:
INTERFACE=dp83200if

#	Run-time file name (only if used):
MSPIFOUT=coremsp

#	Local SMT header files directory:
LCLDIR=

#	Make file variables:
MSPDIR=$(PARENT)/mib
HDRDIR=$(PARENT)/headers
MSPIFDIR=$(PARENT)/$(INTERFACE)/mib
HDRIFDIR=$(PARENT)/$(INTERFACE)/headers
IDIR3=$(HDRDIR)
IDIR4=$(HDRIFDIR)
#
#	Compiler selection and command line flags:
#
CC=
CCFLAGS=-c -I$(HDRDIR) -I$(HDRIFDIR) $(LCLDIR)

#
#	Loader selection and command line flags:
#	(Needed only if creating an executable)
#
LD=
LDFLAGS=
LDLIBS=smtmsp.o

#
#	Source files:
#
MIBSRCS= mib.c mibchng.c mibget.c mibglbl.c mibinit.c mibmsg.c\
			 mibproc.c mibsup.c

#
#	Object files:
#
MIBOBJS=$(MIBSRCS:.c=.o)

#
#	Dependencies:
#
all:	Makedepend $(MIBOBJS) $(LDLIBS)


clean:
		rm -f $(MIBOBJS)

print:
		ptr -x4 -c $(MIBSRCS)

CSOURCES = $(MIBSRCS)

.include $(ROOT)/fddicon/fddi.mak







