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