include ../make.inc

all:  testdlamch testslamch testtimer install.out

testdlamch: dlamch.o lsame.o dlamchtst.o
	$(LOADER) $(LOADOPTS) -o testdlamch dlamch.o lsame.o dlamchtst.o

testslamch: slamch.o lsame.o slamchtst.o
	$(LOADER) $(LOADOPTS) -o testslamch slamch.o lsame.o slamchtst.o

testtimer: superlu_timer.o timertst.o
	$(LOADER) $(LOADOPTS) -o testtimer superlu_timer.o timertst.o

install.out:
	@echo Testing machines parameters and timer
	bash install.sh

slamch.o: slamch.c ; $(CC) $(NOOPTS) -c $<
dlamch.o: dlamch.c ; $(CC) $(NOOPTS) -c $<
superlu_timer.o: superlu_timer.c; $(CC) $(NOOPTS) -c $<

.c.o: ; $(CC) $(CFLAGS) -c $<

clean:
	rm -f *.o test* *.out
