blob: e3dbc7e022fd3430fc1682cf3712aaf392cc4200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
noinst_LTLIBRARIES = libapihashingpythonclassics.la
libapihashingpythonclassics_la_SOURCES = \
djb2.h djb2.c \
module.h module.c \
ror13.h ror13.c
libapihashingpythonclassics_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS) $(LIBPYTHON_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
-I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
devdir = $(includedir)/chrysalide-$(subdir)
dev_HEADERS = $(libapihashingpythonclassics_la_SOURCES:%c=)
|