kusano 2b45e8
TOPDIR	= ../..
kusano 2b45e8
include ../../Makefile.system
kusano 2b45e8
kusano 2b45e8
SBLASOBJS = spotf2_U.$(SUFFIX) spotf2_L.$(SUFFIX)
kusano 2b45e8
DBLASOBJS = dpotf2_U.$(SUFFIX) dpotf2_L.$(SUFFIX)
kusano 2b45e8
QBLASOBJS = qpotf2_U.$(SUFFIX) qpotf2_L.$(SUFFIX)
kusano 2b45e8
CBLASOBJS = cpotf2_U.$(SUFFIX) cpotf2_L.$(SUFFIX)
kusano 2b45e8
ZBLASOBJS = zpotf2_U.$(SUFFIX) zpotf2_L.$(SUFFIX)
kusano 2b45e8
XBLASOBJS = xpotf2_U.$(SUFFIX) xpotf2_L.$(SUFFIX)
kusano 2b45e8
kusano 2b45e8
spotf2_U.$(SUFFIX) : potf2_U.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
spotf2_L.$(SUFFIX) : potf2_L.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
dpotf2_U.$(SUFFIX) : potf2_U.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
dpotf2_L.$(SUFFIX) : potf2_L.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
qpotf2_U.$(SUFFIX) : potf2_U.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
qpotf2_L.$(SUFFIX) : potf2_L.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
cpotf2_U.$(SUFFIX) : zpotf2_U.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
cpotf2_L.$(SUFFIX) : zpotf2_L.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
zpotf2_U.$(SUFFIX) : zpotf2_U.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
zpotf2_L.$(SUFFIX) : zpotf2_L.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
xpotf2_U.$(SUFFIX) : zpotf2_U.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
xpotf2_L.$(SUFFIX) : zpotf2_L.c
kusano 2b45e8
	$(CC) -c $(CFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
spotf2_U.$(PSUFFIX) : potf2_U.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
spotf2_L.$(PSUFFIX) : potf2_L.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
dpotf2_U.$(PSUFFIX) : potf2_U.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
dpotf2_L.$(PSUFFIX) : potf2_L.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
qpotf2_U.$(PSUFFIX) : potf2_U.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
qpotf2_L.$(PSUFFIX) : potf2_L.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
cpotf2_U.$(PSUFFIX) : zpotf2_U.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
cpotf2_L.$(PSUFFIX) : zpotf2_L.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
zpotf2_U.$(PSUFFIX) : zpotf2_U.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
zpotf2_L.$(PSUFFIX) : zpotf2_L.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
xpotf2_U.$(PSUFFIX) : zpotf2_U.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
xpotf2_L.$(PSUFFIX) : zpotf2_L.c
kusano 2b45e8
	$(CC) -c $(PFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
kusano 2b45e8
kusano 2b45e8
include ../../Makefile.tail