Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bf36d1635ade5c448fc5ae99cf6b31c2f779481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CXX := g++
CXXFLAGS := -Wall -Werror -fPIC -O3 -march=native
SRC := AVX_Matrix_Mult.cc  SSE_Matrix_Mult.cc  stopwatch.cc  Test.cc
OBJ := ${SRC:.cc=.o}

all: Test

Test: ${OBJ}
	${CXX} ${CXXFLAGS} ${OBJ} -o Test

.c.o:
	${CXX} ${CXXFLAGS} -c $<