File: Makefile

package info (click to toggle)
blis 2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,904 kB
  • sloc: ansic: 351,996; fortran: 21,831; cpp: 10,947; sh: 9,392; makefile: 1,921; asm: 1,516; python: 695
file content (18 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

CC	= gcc
TARGET_ARCH = -m64 -mvsx

TGTS	= exp

KERNEL	= bli_gemm_opt_8x4.o

CFLAGS  = -DUTEST -std=gnu99 -ggdb3 -Wall
CFLAGS  += -O3

all: $(TGTS)

exp: exp.o $(KERNEL)

clean:
	rm -f $(TGTS) *.o