include ../make.${BLKCMARCH}

OBJS =  eforce.o rwait.o schesend.o schesendf.o server.o support.o supportf.o syncsend.o syncsendf.o
SOURCE =  eforce.c rwait.c schesend.c schesendf.c server.c support.c supportf.c syncsend.c syncsendf.c
#
# This makefile template defines a library name that is used when collecting
# object files into a library.  
LIBNAME  = ../lib/libblkcm${BLKCMARCH}.a
.PRECIOUS: $(LIBNAME)

lib: $(OBJS) 
	$(AR) $(LIBNAME) $?
.c.o: 
	$(CC) -c $(CFLAGS) $(COPTFLAGS) $*.c
.f.o: 
	$(FC) -c $(FFLAGS) $(FOPTFLAGS) $*.f
clean:
	$(RM) -f *.o *~ core TAGS
