blob: 0a487c94fc8a4628e4c7c02912c79b4facd483fe (
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
|
include $(top_srcdir)/Makefile.config
#
# Do not output #line because it confuses the dependencies
# generator of GCC if configure run out of source tree.
# Comment these to ease debugging.
#
AM_LFLAGS = -L
AM_YFLAGS = -l -d
EXTRA_DIST=conf_lexer.cxx conf_parser.cxx
pkglib_LTLIBRARIES = libcommon.la
libcommon_la_SOURCES = DocumentDB.cc DocumentRef.cc \
HtWordReference.cc HtWordList.cc defaults.cc \
HtURLCodec.cc URL.cc URLTrans.cc \
HtZlibCodec.cc cgi.cc HtSGMLCodec.cc \
HtConfiguration.cc HtURLRewriter.cc \
conf_lexer.lxx conf_parser.yxx
libcommon_la_LDFLAGS = -release $(HTDIG_MAJOR_VERSION).$(HTDIG_MINOR_VERSION).$(HTDIG_MICRO_VERSION) ${extra_ldflags}
noinst_HEADERS = DocumentDB.h \
DocumentRef.h \
HtWordReference.h \
HtWordList.h \
HtURLCodec.h \
HtSGMLCodec.h \
URL.h \
cgi.h \
HtZlibCodec.h \
defaults.h \
HtConfiguration.h \
HtURLRewriter.h \
conf_parser.h
LOCAL_DEFINES= -DBIN_DIR=\"$(bindir)\" \
-DCOMMON_DIR=\"$(COMMON_DIR)\" \
-DCONFIG_DIR=\"$(CONFIG_DIR)\" \
-DDATABASE_DIR=\"$(DATABASE_DIR)\" \
-DIMAGE_URL_PREFIX=\"$(IMAGE_URL_PREFIX)\"
|