######################################################################
#
#	Management Services Process Makefile
#
#	Makefile for MSP Interface Modules
#
#	File:		makefile
#	Created:	12/01/89
#
#	SID:		1.3
#	Last Modified:	1/29/91
#	
#	Copyright 1990,1991 XLNT Designs Inc.
#
#	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=../..

#	MIB interface file directory:
INTERFACE=dp83200if

#	Run-time file name (only if used):
MIBIFOUT=ifmib

#	Local SMT header files directory:
LCLDIR=

#	Make file variables:
MIBDIR=$(PARENT)/mib
HDRDIR=$(PARENT)/headers
MIBIFDIR=$(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=smtmspif.o

#
#	Source files:
#

MIBIFSRCS= mibintif.c mibmsgif.c mibinim.c miblocal.c mibsysif.c 

#
#	Object files:
#
MIBIFOBJS=$(MIBIFSRCS:.c=.o)

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

#
#	Define dependency rules:

clean:
		rm -f $(MIBIFOBJS)

print:
		ptr -x4 -c $(MIBIFSRCS)

CSOURCES = $(MIBIFSRCS)
.include vcs.cfg
.include $(ROOT)/fddicon/fddi.mak

FRC:


