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: cblas_ex1 cblas_ex2
-
- cblas_ex1: cblas_example1.o $(CBLASLIB) $(BLASLIB)
- $(LOADER) $(LOADOPTS) -o $@ $^
- cblas_ex2: cblas_example2.o $(CBLASLIB) $(BLASLIB)
- $(LOADER) $(LOADOPTS) -o $@ $^
-
- clean: cleanobj cleanexe
- cleanobj:
- rm -f *.o
- cleanexe:
- rm -f cblas_ex1 cblas_ex2
-
- .c.o:
- $(CC) $(CFLAGS) -I../include -c -o $@ $<
|