You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 1.1 kB

1234567891011121314151617181920212223242526272829303132333435
  1. include ../make.inc
  2. .SUFFIXES : .o .f
  3. all: testlsame testslamch testdlamch testsecond testdsecnd testieee testversion
  4. testlsame: lsame.o lsametst.o
  5. $(LOADER) $(LOADOPTS) -o testlsame lsame.o lsametst.o
  6. testslamch: slamch.o lsame.o slamchtst.o
  7. $(LOADER) $(LOADOPTS) -o testslamch slamch.o lsame.o slamchtst.o
  8. testdlamch: dlamch.o lsame.o dlamchtst.o
  9. $(LOADER) $(LOADOPTS) -o testdlamch dlamch.o lsame.o dlamchtst.o
  10. testsecond: second_$(TIMER).o secondtst.o
  11. @echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
  12. $(LOADER) $(LOADOPTS) -o testsecond second_$(TIMER).o secondtst.o
  13. testdsecnd: dsecnd_$(TIMER).o dsecndtst.o
  14. @echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
  15. $(LOADER) $(LOADOPTS) -o testdsecnd dsecnd_$(TIMER).o dsecndtst.o
  16. testieee: tstiee.o
  17. $(LOADER) $(LOADOPTS) -o testieee tstiee.o
  18. testversion: ilaver.o LAPACK_version.o
  19. $(LOADER) $(LOADOPTS) -o testversion ilaver.o LAPACK_version.o
  20. clean:
  21. rm -f *.o test*
  22. .f.o:
  23. $(FORTRAN) $(OPTS) -c $< -o $@
  24. slamch.o: slamch.f ; $(FORTRAN) $(NOOPT) -c $< -o $@
  25. dlamch.o: dlamch.f ; $(FORTRAN) $(NOOPT) -c $< -o $@