blob: 29c2a4510b54da0ba5b0761f76cd32ac1b8cc1bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
noinst_LTLIBRARIES = libpychrysaarchinstructions.la
libpychrysaarchinstructions_la_SOURCES = \
constants.h constants.c \
module.h module.c \
raw.h raw.c \
undefined.h undefined.c
libpychrysaarchinstructions_la_CFLAGS = $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
$(TOOLKIT_CFLAGS) \
-I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
devdir = $(includedir)/chrysalide/$(subdir)
dev_HEADERS = $(libpychrysaarchinstructions_la_SOURCES:%c=)
|