mirror of
https://github.com/Hopiu/rpi-rgb-led-matrix.git
synced 2026-03-16 22:10:27 +00:00
11 lines
316 B
Makefile
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 $@ $^
|