mirror of
https://github.com/php-win-ext/gettext.git
synced 2026-03-26 18:12:16 +01:00
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
## Makefile for the gettext-runtime/tests subdirectory of GNU gettext
|
|
## Copyright (C) 2005-2006, 2008-2009 Free Software Foundation, Inc.
|
|
##
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program 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 General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
## Process this file with automake to produce Makefile.in.
|
|
|
|
AUTOMAKE_OPTIONS = 1.11 gnits no-dependencies color-tests
|
|
EXTRA_DIST =
|
|
|
|
TESTS = test-lock
|
|
|
|
AM_CPPFLAGS = \
|
|
-I.. \
|
|
-I$(srcdir)/../intl
|
|
|
|
noinst_PROGRAMS = test-lock
|
|
test_lock_SOURCES = test-lock.c ../intl/lock.c ../intl/threadlib.c
|
|
test_lock_LDADD = @LIBMULTITHREAD@ @LIBSCHED@
|
|
|
|
# Clean up after Solaris cc.
|
|
clean-local:
|
|
rm -rf SunWS_cache
|