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

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