This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INCLUDES = $(shell python3 -m pybind11 --includes) | |
LIBS = -lpython3.6m | |
CCFLAGS = -O3 -Wall -shared -std=c++11 -fPIC | |
CC = g++ | |
MODULE = someclass$(shell python3-config --extension-suffix) | |
TARGET = program | |
SOURCES = $(wildcard *.cc) | |
all: binding build |