mirror of https://github.com/hpcaitech/ColossalAI
10 lines
279 B
Makefile
10 lines
279 B
Makefile
|
CXXFLAGS += -O3 -Wall -shared -std=c++11 -fPIC -fdiagnostics-color
|
||
|
CPPFLAGS += $(shell python3 -m pybind11 --includes)
|
||
|
LIBNAME = helpers
|
||
|
LIBEXT = $(shell python3-config --extension-suffix)
|
||
|
|
||
|
default: $(LIBNAME)$(LIBEXT)
|
||
|
|
||
|
%$(LIBEXT): %.cpp
|
||
|
$(CXX) $(CXXFLAGS) $(CPPFLAGS) $< -o $@
|