84 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
| TOPSRCDIR = ..
 | |
| include $(TOPSRCDIR)/make.inc
 | |
| 
 | |
| .PHONY: all testlsame testslamch testdlamch testsecond testdsecnd testieee testversion
 | |
| all: testlsame testslamch testdlamch testsecond testdsecnd testieee testversion
 | |
| 
 | |
| ifneq ($(C_LAPACK), 1)
 | |
| testlsame: lsame.o lsametst.o
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testslamch: slamch.o lsame.o slamchtst.o
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testdlamch: dlamch.o lsame.o dlamchtst.o
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testsecond: second_$(TIMER).o secondtst.o
 | |
| 	@echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testdsecnd: dsecnd_$(TIMER).o dsecndtst.o
 | |
| 	@echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testieee: tstiee.o
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testversion: ilaver.o LAPACK_version.o
 | |
| 	$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| else
 | |
| testlsame: lsame.o lsametst.o
 | |
| 	$(CC) -O2  -o $@ $^
 | |
| 
 | |
| testslamch: slamch.o lsame.o slamchtst.o
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testdlamch: dlamch.o lsame.o dlamchtst.o
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testsecond: second_$(TIMER).o secondtst.o
 | |
| 	@echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testdsecnd: dsecnd_$(TIMER).o dsecndtst.o
 | |
| 	@echo "[INFO] : TIMER value: $(TIMER) (given by make.inc)"
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testieee: tstiee.o
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
 | |
| 
 | |
| testversion: ilaver.o LAPACK_version.o
 | |
| 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
 | |
| endif
 | |
| 
 | |
| .PHONY: run
 | |
| run: all
 | |
| 	./testlsame
 | |
| 	./testslamch
 | |
| 	./testdlamch
 | |
| 	./testsecond
 | |
| 	./testdsecnd
 | |
| 	./testieee
 | |
| 	./testversion
 | |
| 
 | |
| .PHONY: clean cleanobj cleanexe cleantest
 | |
| clean: cleanobj cleanexe cleantest
 | |
| cleanobj:
 | |
| 	rm -f *.o
 | |
| cleanexe:
 | |
| 	rm -f test*
 | |
| cleantest:
 | |
| 	rm -f core
 | |
| 
 | |
| ifneq ($(C_LAPACK), 1)
 | |
| slamch.o: slamch.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
 | |
| dlamch.o: dlamch.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
 | |
| sroundup_lwork.o: sroundup_lwork.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
 | |
| droundup_lwork.o: droundup_lwork.f ; $(FC) $(FFLAGS_NOOPT) -c -o $@ $<
 | |
| else
 | |
| slamch.o: slamch.c ; $(CC) $(CFLAGS) -O0 -c -o $@ $<
 | |
| dlamch.o: dlamch.c ; $(CC) $(CFLAGS) -O0 -c -o $@ $<
 | |
| endif
 |