xref: /aosp_15_r20/external/cblas/examples/Makefile (revision 1858f9982ea1ad57fb52080c08594e4d1cce4fa1)
1dlvl = ./.
2include $(dlvl)/../Makefile.in
3
4all: example1 example2
5
6example1:
7	$(CC) -c $(CFLAGS) -I../src cblas_example1.c
8	$(LOADER) -o cblas_ex1 cblas_example1.o $(CBLIB) $(BLLIB)
9
10example2:
11	$(CC) -c $(CFLAGS) -I../src cblas_example2.c
12	$(LOADER) -o cblas_ex2 cblas_example2.o $(CBLIB) $(BLLIB)
13
14cleanall:
15	rm -f *.o cblas_ex1 cblas_ex2
16