summaryrefslogtreecommitdiff
path: root/librdfa/Makefile.am
blob: 1be09e4a0c04be36c16b620fe6133554d3eb393e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- Mode: Makefile -*-
#
# Makefile for librdfa convienience library
#

if LIBRDFA
noinst_LTLIBRARIES = librdfa.la
AM_CPPFLAGS = -DLIBRDFA_IN_RAPTOR -I$(srcdir)

librdfa_la_SOURCES = \
context.c \
curie.c \
iri.c \
language.c \
lists.c \
namespace.c \
rdfa.c \
rdfa_utils.c \
subject.c \
triple.c \
rdfa.h \
rdfa_utils.h \
config.h

if NEED_STRTOK_R
librdfa_la_SOURCES += \
strtok_r.c \
strtok_r.h
endif


# Do not need:
#   mingw32_utils.c
#   mingw32_utils.h

else

EXTRA_DIST = \
context.c \
curie.c \
iri.c \
language.c \
lists.c \
namespace.c \
rdfa.c \
rdfa_utils.c \
strtok_r.c \
subject.c \
triple.c \
rdfa.h \
rdfa_utils.h \
strtok_r.h \
config.h

endif