blob: c7e313b5b3a664ccf19af9ba7bf047e69740e97c (
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
|
noinst_LTLIBRARIES = libkaitaiparsers.la
libkaitaiparsers_la_SOURCES = \
attribute-int.h \
attribute.h attribute.c \
enum-int.h \
enum.h enum.c \
instance-int.h \
instance.h instance.c \
meta-int.h \
meta.h meta.c \
struct-int.h \
struct.h struct.c \
switch-int.h \
switch.h switch.c \
type-int.h \
type.h type.c
libkaitaiparsers_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
devdir = $(includedir)/chrysalide-$(subdir)
dev_HEADERS = $(libkaitaiparsers_la_SOURCES:%c=)
|