blob: 3b753cc1d9dce4308e48c2ac9997e86cc1b0a1b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
noinst_LTLIBRARIES = libpychrysaarchoperands.la
# libpychrysaarchoperands_la_SOURCES = \
# feeder.h feeder.c \
# proxy.h proxy.c \
# rename.h rename.c \
# target.h target.c \
# targetable.h targetable.c
libpychrysaarchoperands_la_SOURCES = \
constants.h constants.c \
immediate.h immediate.c \
known.h known.c \
module.h module.c \
register.h register.c
libpychrysaarchoperands_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
-I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
devdir = $(includedir)/chrysalide/$(subdir)
dev_HEADERS = $(libpychrysaarchoperands_la_SOURCES:%c=)
|