Home | History | Annotate | Download | only in examples
      1 dlvl = ./.
      2 include $(dlvl)/../Makefile.in
      3 
      4 all: example1 example2
      5 
      6 example1: 
      7 	$(CC) -c $(CFLAGS) -I../src cblas_example1.c
      8 	$(LOADER) -o cblas_ex1 cblas_example1.o $(CBLIB) $(BLLIB)
      9 
     10 example2: 
     11 	$(CC) -c $(CFLAGS) -I../src cblas_example2.c
     12 	$(LOADER) -o cblas_ex2 cblas_example2.o $(CBLIB) $(BLLIB)
     13    
     14 cleanall:
     15 	rm -f *.o cblas_ex1 cblas_ex2
     16