PaddleClas/deploy/vector_search/Makefile

15 lines
296 B
Makefile
Raw Normal View History

CXX=g++
ifeq ($(OS),Windows_NT)
postfix=dll
else
postfix=so
endif
2021-06-01 11:18:55 +08:00
all : index
index : src/config.h src/graph.h src/data.h interface.cc
${CXX} -shared -fPIC interface.cc -o index.${postfix} -std=c++11 -Ofast -march=native -g -flto -funroll-loops -DOMP -fopenmp
clean :
rm index.${postfix}