2012-02-26 12:18:39 +08:00
|
|
|
# Copyright (C) 1999, 2000, 2012 Free Software Foundation, Inc.
|
1999-08-25 01:55:34 +08:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 12:58:11 +08:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
1999-08-25 01:55:34 +08:00
|
|
|
|
|
|
|
# The GNU C 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
|
2001-07-06 12:58:11 +08:00
|
|
|
# Lesser General Public License for more details.
|
1999-08-25 01:55:34 +08:00
|
|
|
|
2001-07-06 12:58:11 +08:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2012-02-10 07:18:22 +08:00
|
|
|
# License along with the GNU C Library; if not, see
|
|
|
|
# <http://www.gnu.org/licenses/>.
|
1999-08-25 01:55:34 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Sub-makefile for conform portion of the library.
|
|
|
|
#
|
|
|
|
subdir := conform
|
|
|
|
|
2000-08-03 12:40:50 +08:00
|
|
|
include ../Rules
|
2012-02-26 12:18:39 +08:00
|
|
|
|
2012-02-27 10:45:44 +08:00
|
|
|
ifneq (yes,$(fast-check))
|
|
|
|
ifeq (no,$(cross-compiling))
|
2012-02-26 12:18:39 +08:00
|
|
|
tests: $(objpfx)run-conformtest.out
|
2012-02-27 10:45:44 +08:00
|
|
|
endif
|
|
|
|
endif
|
2012-02-26 12:18:39 +08:00
|
|
|
|
|
|
|
$(objpfx)run-conformtest.out: run-conformtest.sh conformtest.pl \
|
|
|
|
$(wildcard data/*.h-data) \
|
|
|
|
$(wildcard data/*/*.h-data)
|
2012-03-28 06:02:19 +08:00
|
|
|
-$(BASH) -e $< $(objpfx) $(PERL) '$(CC)' \
|
2012-02-26 12:18:39 +08:00
|
|
|
'-I../include $(+sysdep-includes) $(sysincludes) -I..'
|
|
|
|
|
|
|
|
generated = $(wildcard $(objpfx)conform-*.out)
|