1997-09-16 01:07:48 +00:00
|
|
|
#
|
|
|
|
# aggregate.make
|
|
|
|
#
|
|
|
|
# Makefile rules to build a set of GNUstep-base subprojects.
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Scott Christley <scottc@net-community.com>
|
1997-10-06 03:58:06 +00:00
|
|
|
# Author: Ovidiu Predescu <ovidiu@net-community.com>
|
1997-09-16 01:07:48 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Include in the common makefile rules
|
|
|
|
#
|
1997-09-22 22:49:02 +00:00
|
|
|
include $(GNUSTEP_SYSTEM_ROOT)/Makefiles/rules.make
|
1997-09-16 01:07:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# The list of directory names with the subprojects
|
|
|
|
# are in the makefile variable SUBPROJECTS
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Internal targets
|
|
|
|
#
|
1997-09-26 01:16:38 +00:00
|
|
|
internal-all internal-install internal-uninstall internal-clean \
|
|
|
|
internal-distclean internal-check::
|
|
|
|
@(target=`echo $@ | sed 's/internal-//'`; \
|
|
|
|
for f in $(SUBPROJECTS); do \
|
|
|
|
echo Making $$target in $$f...;\
|
|
|
|
(cd $$f; $(MAKE) $$target); \
|
1997-09-16 01:07:48 +00:00
|
|
|
done)
|