1#   -*-makefile-*-
2#   Master/resource-set.make
3#
4#   Master makefile rules to install resource files
5#
6#   Copyright (C) 2002 Free Software Foundation, Inc.
7#
8#   Author:  Nicola Pero <nicola@brainstorm.co.uk>
9#
10#   This file is part of the GNUstep Makefile Package.
11#
12#   This library is free software; you can redistribute it and/or
13#   modify it under the terms of the GNU General Public License
14#   as published by the Free Software Foundation; either version 3
15#   of the License, or (at your option) any later version.
16#
17#   You should have received a copy of the GNU General Public
18#   License along with this library; see the file COPYING.
19#   If not, write to the Free Software Foundation,
20#   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21
22ifeq ($(RULES_MAKE_LOADED),)
23include $(GNUSTEP_MAKEFILES)/rules.make
24endif
25
26RESOURCE_SET_NAME := $(strip $(RESOURCE_SET_NAME))
27
28# Only install and uninstall are actually performed for this project type
29
30internal-all::
31
32internal-install:: $(RESOURCE_SET_NAME:=.install.resource-set.variables)
33
34internal-uninstall:: $(RESOURCE_SET_NAME:=.uninstall.resource-set.variables)
35
36internal-clean::
37
38internal-distclean::
39
40