1#   -*-makefile-*-
2#   Master/test-library.make
3#
4#   Master Makefile rules for dejagnu/GNUstep based testing
5#
6#   Copyright (C) 1997 Free Software Foundation, Inc.
7#
8#   Author:  Scott Christley <scottc@net-community.com>
9#   Author:  Ovidiu Predescu <ovidiu@net-community.com>
10#
11#   This file is part of the GNUstep Makefile Package.
12#
13#   This library is free software; you can redistribute it and/or
14#   modify it under the terms of the GNU General Public License
15#   as published by the Free Software Foundation; either version 3
16#   of the License, or (at your option) any later version.
17#
18#   You should have received a copy of the GNU General Public
19#   License along with this library; see the file COPYING.
20#   If not, write to the Free Software Foundation,
21#   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22
23
24TEST_LIBRARY_NAME := $(strip $(TEST_LIBRARY_NAME))
25
26ifeq ($(RULES_MAKE_LOADED),)
27include $(GNUSTEP_MAKEFILES)/rules.make
28endif
29
30ifeq ($(GNUSTEP_MAKE_PARALLEL_BUILDING), no)
31
32internal-all:: $(GNUSTEP_OBJ_DIR) $(TEST_LIBRARY_NAME:=.all.test-lib.variables)
33
34else
35
36internal-all:: $(GNUSTEP_OBJ_DIR)
37	$(ECHO_NOTHING_RECURSIVE_MAKE)$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory --no-keep-going \
38	internal-master-test-lib-all \
39	GNUSTEP_BUILD_DIR="$(GNUSTEP_BUILD_DIR)" \
40	_GNUSTEP_MAKE_PARALLEL=yes$(END_ECHO_RECURSIVE_MAKE)
41
42.PHONY: internal-master-test-lib-all
43
44internal-master-test-lib-all: $(TEST_LIBRARY_NAME:=.all.test-lib.variables)
45
46endif
47
48internal-check:: $(TEST_LIBRARY_NAME:=.check.test-lib.variables)
49
50internal-install:: $(TEST_LIBRARY_NAME:=.install.test-lib.variables)
51
52internal-uninstall:: $(TEST_LIBRARY_NAME:=.uninstall.test-lib.variables)
53
54_PSWRAP_C_FILES = $(foreach lib,$(TEST_LIBRARY_NAME),$($(lib)_PSWRAP_FILES:.psw=.c))
55_PSWRAP_H_FILES = $(foreach lib,$(TEST_LIBRARY_NAME),$($(lib)_PSWRAP_FILES:.psw=.h))
56
57internal-clean::
58ifneq ($(_PSWRAP_C_FILES)$(_PSWRAP_H_FILES),)
59	(cd $(GNUSTEP_BUILD_DIR); \
60	rm -rf $(_PSWRAP_C_FILES) $(_PSWRAP_H_FILES))
61endif
62
63internal-distclean::
64
65TEST_LIBRARIES_WITH_SUBPROJECTS = $(strip $(foreach test-library,$(TEST_LIBRARY_NAME),$(patsubst %,$(test-library),$($(test-library)_SUBPROJECTS))))
66ifneq ($(TEST_LIBRARIES_WITH_SUBPROJECTS),)
67internal-clean:: $(TEST_LIBRARIES_WITH_SUBPROJECTS:=.clean.test-library.subprojects)
68internal-distclean:: $(TEST_LIBRARIES_WITH_SUBPROJECTS:=.distclean.test-library.subprojects)
69endif
70
71internal-check:: $(TEST_LIBRARY_NAME:=.check.test-lib.variables)
72
73internal-strings:: $(TEST_LIBRARY_NAME:=.strings.test-lib.variables)
74
75$(TEST_LIBRARY_NAME): $(GNUSTEP_OBJ_DIR)
76	$(ECHO_NOTHING_RECURSIVE_MAKE)$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory $@.all.test-lib.variables$(END_ECHO_RECURSIVE_MAKE)
77