blob: 83b761a5983cd46ad8d437a71cdb3ecbc91b5b34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include
if DOC_ONLY
if ENABLE_DOC
SUBDIRS = . contrib doc po
else
SUBDIRS = . contrib po
endif
else
if ENABLE_DOC
SUBDIRS = . contrib src doc po
else
SUBDIRS = . contrib src po
endif
endif
@DX_RULES@
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = build-aux/config.rpath \
AUTHORS \
README.1st
|