From 0a76d15e91c26aae360749b4eb75559971e4fcfb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 29 Nov 2003 06:51:23 +0000 Subject: Update. 2003-10-09 Steven Munroe * Makefile: Allow for c++-types-$(config-machine)-$(config-os).data in addition to c++-types-$(base-machine)-$(config-os).data. * scripts/data/c++-types-powerpc-linux-gnu.data: New file. * scripts/data/c++-types-powerpc64-linux-gnu.data: New file. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 19a1f883f6..a261be265b 100644 --- a/Makefile +++ b/Makefile @@ -230,6 +230,10 @@ tests-clean: tests: $(objpfx)c++-types-check.out ifneq ($(CXX),no) +ifneq (,$(wildcard scripts/data/c++-types-$(config-machine)-$(config-os).data)) +$(objpfx)c++-types-check.out: scripts/data/c++-types-$(config-machine)-$(config-os).data + scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99,$(CFLAGS)) $(CPPFLAGS) > $@ +else ifneq (,$(wildcard scripts/data/c++-types-$(base-machine)-$(config-os).data)) $(objpfx)c++-types-check.out: scripts/data/c++-types-$(base-machine)-$(config-os).data scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99,$(CFLAGS)) $(CPPFLAGS) > $@ @@ -239,6 +243,7 @@ $(objpfx)c++-types-check.out: @echo "not run" > $@ endif endif +endif # The realclean target is just like distclean for the parent, but we want # the subdirs to know the difference in case they care. -- cgit v1.2.3