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
|
## Makefile.am for the libgnu subdirectory of Enchant
#
# Copyright (C) 2017 Reuben Thomas
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
# Initialize variables that will be added to by Makefile.gnulib
EXTRA_DIST =
BUILT_SOURCES =
MOSTLYCLEANFILES =
MOSTLYCLEANDIRS =
CLEANFILES =
noinst_LTLIBRARIES =
# Set compilation flags needed for relocatable.c used by relocatable-lib-lgpl
AM_CPPFLAGS = -DIN_LIBRARY -DENABLE_COSTLY_RELOCATABLE
if SHLIBS_IN_BINDIR
AM_CPPFLAGS += -DINSTALLDIR=\"$(bindir)\"
else
AM_CPPFLAGS += -DINSTALLDIR=\"$(libdir)\"
endif
# Include auto-generated makefile
include Makefile.gnulib
|