rpi-rgb-led-matrix/python/rgbmatrix/Makefile
Henner Zeller f3cae310b9 o Update readme re. Python 3.x to be not specific to minor version.
o Move cython generation into rgbmatrix/Makefile
2016-08-28 10:22:52 -07:00

11 lines
316 B
Makefile

# The *.cpp files are included in the distribution; this is only needed when
# working on the pyx files.
#
# Please check in modified *.cpp files with distribution to not require cython
# to be installed on the users' machine.
CYTHON ?= cython
all : core.cpp graphics.cpp
%.cpp : %.pyx
$(CYTHON) --cplus -o $@ $^