blob: e9c3756c67b99a951b7dd3dfe90f9b0648657366 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
|
noinst_LTLIBRARIES = libpychrysaglibext.la
# libpychrysaglibext_la_SOURCES = \
# constants.h constants.c \
# binarycursor.h binarycursor.c \
# binportion.h binportion.c \
# buffercache.h buffercache.c \
# bufferline.h bufferline.c \
# comparison.h comparison.c \
# configuration.h configuration.c \
# linecursor.h linecursor.c \
# linegen.h linegen.c \
# module.h module.c \
# singleton.h singleton.c
# if BUILD_GTK_SUPPORT
# libpychrysaglibext_la_SOURCES += \
# bufferview.h bufferview.c \
# loadedpanel.h loadedpanel.c \
# named.h named.c
# endif
libpychrysaglibext_la_SOURCES = \
module.h module.c \
work.h work.c \
workqueue.h workqueue.c
libpychrysaglibext_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
-I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
devdir = $(includedir)/chrysalide/$(subdir)
dev_HEADERS = $(libpychrysaglibext_la_SOURCES:%c=)
|