New Master/rules.make file

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12278 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-01-30 16:48:58 +00:00
parent e43ba24f5c
commit 94e0683c8d

52
Master/rules.make Normal file
View file

@ -0,0 +1,52 @@
#
# rules.make
#
# Makefile rules for the Master invocation.
#
# Copyright (C) 1997, 2001, 2002 Free Software Foundation, Inc.
#
# Author: Scott Christley <scottc@net-community.com>
# Author: Ovidiu Predescu <ovidiu@net-community.com>
# Author: Nicola Pero <nicola@brainstorm.co.uk>
#
# This file is part of the GNUstep Makefile Package.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# You should have received a copy of the GNU General Public
# License along with this library; see the file COPYING.LIB.
# If not, write to the Free Software Foundation,
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Prevent multiple inclusions
ifeq ($(MASTER_RULES_MAKE_LOADED),)
MASTER_RULES_MAKE_LOADED=yes
#
# Now rules for packaging - all automatically included
#
#
# Rules for building source distributions
#
include $(GNUSTEP_MAKEFILES)/Master/source-distribution.make
#
# Rules for building spec files/file lists for RPMs, and RPMs
#
include $(GNUSTEP_MAKEFILES)/Master/rpm.make
#
# Rules for building debian/* scripts for DEBs, and DEBs
#
#include $(GNUSTEP_MAKEFILES)/Master/deb.make <TODO>
endif
# rules.make loaded
## Local variables:
## mode: makefile
## End: