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

1234567891011121314151617
  1. include ../../make.inc
  2. all: cblas_ex1 cblas_ex2
  3. cblas_ex1: cblas_example1.o $(CBLASLIB) $(BLASLIB)
  4. $(LOADER) $(LOADOPTS) -o $@ $^
  5. cblas_ex2: cblas_example2.o $(CBLASLIB) $(BLASLIB)
  6. $(LOADER) $(LOADOPTS) -o $@ $^
  7. clean: cleanobj cleanexe
  8. cleanobj:
  9. rm -f *.o
  10. cleanexe:
  11. rm -f cblas_ex1 cblas_ex2
  12. .c.o:
  13. $(CC) $(CFLAGS) -I../include -c -o $@ $<