]> err.no Git - sope/blob - gnustep-make/Master/ctool.make
added gnustep-make vendor branch to trunk
[sope] / gnustep-make / Master / ctool.make
1 #
2 #   Master/ctool.make
3 #
4 #   Master Makefile rules to build GNUstep-based command line ctools.
5 #
6 #   Copyright (C) 1997, 2001 Free Software Foundation, Inc.
7 #
8 #   Author:  Scott Christley <scottc@net-community.com>
9 #   Author:  Nicola Pero <nicola@brainstorm.co.uk>
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 2
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.LIB.
20 #   If not, write to the Free Software Foundation,
21 #   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 ifeq ($(RULES_MAKE_LOADED),)
24 include $(GNUSTEP_MAKEFILES)/rules.make
25 endif
26
27 CTOOL_NAME := $(strip $(CTOOL_NAME))
28
29 internal-all:: $(CTOOL_NAME:=.all.ctool.variables)
30
31 internal-install:: $(CTOOL_NAME:=.install.ctool.variables)
32
33 internal-uninstall:: $(CTOOL_NAME:=.uninstall.ctool.variables)
34
35 internal-clean::
36         rm -rf $(GNUSTEP_OBJ_DIR)
37
38 internal-distclean::
39         (cd $(GNUSTEP_BUILD_DIR); \
40         rm -rf shared_obj static_obj shared_debug_obj shared_profile_obj \
41           static_debug_obj static_profile_obj shared_profile_debug_obj \
42           static_profile_debug_obj)
43
44 CTOOLS_WITH_SUBPROJECTS = $(strip $(foreach ctool,$(CTOOL_NAME),$(patsubst %,$(ctool),$($(ctool)_SUBPROJECTS))))
45 ifneq ($(CTOOLS_WITH_SUBPROJECTS),)
46 internal-clean:: $(CTOOLS_WITH_SUBPROJECTS:=.clean.ctool.subprojects)
47 internal-distclean:: $(CTOOLS_WITH_SUBPROJECTS:=.distclean.ctool.subprojects)
48 endif
49
50 internal-strings:: $(CTOOL_NAME:=.strings.ctool.variables)
51
52 $(CTOOL_NAME):
53         @$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory \
54                  $@.all.ctool.variables