• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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