36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
include ../make.inc
 | 
						|
 | 
						|
.SUFFIXES : .o .f 
 | 
						|
all:  testlsame testslamch testdlamch testsecond testdsecnd testieee testversion 
 | 
						|
 | 
						|
testlsame:  lsame.o lsametst.o
 | 
						|
	$(LOADER) $(LOADOPTS) -o testlsame lsame.o lsametst.o
 | 
						|
 | 
						|
testslamch: slamch.o lsame.o slamchtst.o
 | 
						|
	$(LOADER) $(LOADOPTS) -o testslamch slamch.o lsame.o slamchtst.o
 | 
						|
 | 
						|
testdlamch: dlamch.o lsame.o dlamchtst.o
 | 
						|
	$(LOADER) $(LOADOPTS) -o testdlamch dlamch.o lsame.o dlamchtst.o
 | 
						|
 | 
						|
testsecond: second_$(TIMER).o secondtst.o
 | 
						|
	@echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
 | 
						|
	$(LOADER) $(LOADOPTS) -o testsecond second_$(TIMER).o secondtst.o
 | 
						|
 | 
						|
testdsecnd: dsecnd_$(TIMER).o dsecndtst.o
 | 
						|
	@echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
 | 
						|
	$(LOADER) $(LOADOPTS) -o testdsecnd dsecnd_$(TIMER).o dsecndtst.o
 | 
						|
 | 
						|
testieee: tstiee.o
 | 
						|
	$(LOADER) $(LOADOPTS) -o testieee tstiee.o
 | 
						|
 | 
						|
testversion: ilaver.o LAPACK_version.o
 | 
						|
	$(LOADER) $(LOADOPTS) -o testversion ilaver.o LAPACK_version.o
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f *.o test*
 | 
						|
.f.o: 
 | 
						|
	$(FORTRAN) $(OPTS) -c $< -o $@
 | 
						|
 | 
						|
slamch.o: slamch.f ; $(FORTRAN) $(NOOPT) -c $< -o $@
 | 
						|
dlamch.o: dlamch.f ; $(FORTRAN) $(NOOPT) -c $< -o $@
 |