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.
|
- include ../../make.inc
-
- all: example1 example2
-
- example1:
- $(CC) $(CFLAGS) -I../include -c cblas_example1.c
- $(LOADER) $(LOADOPTS) -o cblas_ex1 cblas_example1.o $(CBLASLIB) $(BLASLIB)
-
- example2:
- $(CC) $(CFLAGS) -I../include -c cblas_example2.c
- $(LOADER) $(LOADOPTS) -o cblas_ex2 cblas_example2.o $(CBLASLIB) $(BLASLIB)
-
- cleanall:
- rm -f *.o cblas_ex1 cblas_ex2
|