#
# Makefile (for the FERRET/fer/efn code)
#
# August 11 1997
# Jonathan Callahan (with some help from Joe Sirott)
# 10/97 *kob*  - pltform specific files will reside in ppl directory and be 
#		 links to actual files in fer directory
#

#
# include platform specific definitions of:
#       CC, FC, RANLIB, CFLAGS, FFLAGS, PPLUS_FFLAGS
#

include ../platform_specific_flags.mk.$(HOSTTYPE)
include ./SOURCE_FILES
include ./LIB_NAME

#
# Macros
#

OBJS = $(SRCS_F:.F=.o)
C_OBJS = EFN_Util.o


#
# Targets
#

all:	$(LIB)


$(LIB): $(OBJS) $(C_OBJS)
#	This is how we would make a shared object library
#	with all this stuff
#	$(LD) $(LD_DYN_FLAGS) $(OBJS) -o $(LIB)


clean:
	rm -f core *.o *.a

#
# End of Makefile
#
