diff options
Diffstat (limited to 'klippy/chelper.py')
-rw-r--r-- | klippy/chelper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/chelper.py b/klippy/chelper.py index cca91b43..7fb8fd98 100644 --- a/klippy/chelper.py +++ b/klippy/chelper.py @@ -7,9 +7,9 @@ import os, logging import cffi COMPILE_CMD = "gcc -Wall -g -O -shared -fPIC -o %s %s" -SOURCE_FILES = ['stepcompress.c', 'serialqueue.c'] +SOURCE_FILES = ['stepcompress.c', 'serialqueue.c', 'pyhelper.c'] DEST_LIB = "c_helper.so" -OTHER_FILES = ['list.h', 'serialqueue.h'] +OTHER_FILES = ['list.h', 'serialqueue.h', 'pyhelper.h'] defs_stepcompress = """ struct stepcompress *stepcompress_alloc(uint32_t max_error |