######################################################################
#
#	Frame Services Process Makefile
#
#	Makefile for FSP Interface Modules
#
#	File:		makefile
#	Created:	12/01/89
#
#	SID:		1.2
#	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=../..

#	CSP interface file directory:
INTERFACE=dp83200if

#	Run-time file name (only if used):
FBMIFOUT=iffbm

#	Local SMT header files directory:
LCLDIR=

#	Make file variables:
FBMDIR=$(PARENT)/fbm
HDRDIR=$(PARENT)/headers
FBMIFDIR=$(PARENT)/$(INTERFACE)/fbm
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=smtfbmif.o

#
#	Source files:
#
FBMIFSRCS= fbmbufif.c fbmesfif.c fbmfrmif.c fbmintif.c fbmlocal.c\
		fbmmsgif.c fbmsysif.c

#
#	Object files:
#
FBMIFOBJS=$(FBMIFSRCS:.c=.o)

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

#
#	Define dependency rules:

clean:
			rm -f $(FBMIFOBJS)

print:
			ptr -x4 -c $(FBMIFSRCS)


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

FRC:
