mirror of
https://github.com/Hopiu/rpi-rgb-led-matrix.git
synced 2026-05-12 09:13:10 +00:00
12 lines
316 B
Makefile
12 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 $@ $^
|