blob: 3884bfb11f6c282eddbe1eeffad9866301149a29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
noinst_LTLIBRARIES = libkaitairecords.la
libkaitairecords_la_SOURCES = \
bits-int.h \
bits.h bits.c \
delayed-int.h \
delayed.h delayed.c \
empty-int.h \
empty.h empty.c \
group-int.h \
group.h group.c \
item-int.h \
item.h item.c \
list-int.h \
list.h list.c
libkaitairecords_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
devdir = $(includedir)/chrysalide-$(subdir)
dev_HEADERS = $(libkaitairecords_la_SOURCES:%c=)
|