To receive notifications about scheduled maintenance, please subscribe to the mailing-list gitlab-operations@sympa.ethz.ch. You can subscribe to the mailing-list at https://sympa.ethz.ch
CC = g++ CFLAGS = -std=c++14 -Wall -Wextra -Wpedantic CFLAGS += -O3 -march=native LIBS = -lopenblas .PHONY: all all: blastest blastest: blastest.cpp $(CC) $(CFLAGS) -o $@ $^ $(LIBS)