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 583 B

12345678910111213141516171819
  1. include ../../make.inc
  2. all: xexample_DGESV_rowmajor xexample_ZGESV_rowmajor
  3. xexample_DGESV_rowmajor: example_DGESV_rowmajor.o ../../$(LAPACKLIB) ../../$(LAPACKELIB)
  4. $(LOADER) $(LOADOPTS) example_DGESV_rowmajor.o \
  5. ../../$(LAPACKELIB) $(CEXTRALIB) -o $@
  6. ./$@
  7. xexample_ZGESV_rowmajor: example_ZGESV_rowmajor.o ../../$(LAPACKLIB) ../../$(LAPACKELIB)
  8. $(LOADER) $(LOADOPTS) example_ZGESV_rowmajor.o \
  9. ../../$(LAPACKELIB) $(CEXTRALIB) -o $@
  10. ./$@
  11. .c.o:
  12. $(CC) -c $(CFLAGS) -I ../include -o $@ $<
  13. clean:
  14. rm -f *.o xexample_DGESV_rowmajor xexample_ZGESV_rowmajor