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

1234567891011121314
  1. include ../../make.inc
  2. all: example1 example2
  3. example1:
  4. $(CC) $(CFLAGS) -I../include -c cblas_example1.c
  5. $(LOADER) $(LOADOPTS) -o cblas_ex1 cblas_example1.o $(CBLASLIB) $(BLASLIB)
  6. example2:
  7. $(CC) $(CFLAGS) -I../include -c cblas_example2.c
  8. $(LOADER) $(LOADOPTS) -o cblas_ex2 cblas_example2.o $(CBLASLIB) $(BLASLIB)
  9. cleanall:
  10. rm -f *.o cblas_ex1 cblas_ex2