1997-09-23 22:43:24 +00:00
|
|
|
#
|
|
|
|
# Top level makefile for GNUstep GUI Library
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Scott Christley <scottc@net-community.com>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep GUI Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-10-29 21:16:17 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
1997-09-23 22:43:24 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2008-06-10 04:01:49 +00:00
|
|
|
# version 2 of the License, or (at your option) any later version.
|
1997-09-23 22:43:24 +00:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2007-10-29 21:16:17 +00:00
|
|
|
# Lesser General Public License for more details.
|
1997-09-23 22:43:24 +00:00
|
|
|
#
|
2007-10-29 21:16:17 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
1997-09-23 22:43:24 +00:00
|
|
|
# License along with this library; see the file COPYING.LIB.
|
2007-10-29 21:16:17 +00:00
|
|
|
# If not, see <http://www.gnu.org/licenses/> or write to the
|
|
|
|
# Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02110-1301, USA.
|
1997-09-23 22:43:24 +00:00
|
|
|
|
2007-02-28 07:18:25 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
|
|
|
|
endif
|
|
|
|
|
2008-12-19 13:00:47 +00:00
|
|
|
PACKAGE_NAME = gnustep-gui
|
|
|
|
export PACKAGE_NAME
|
2001-01-19 19:10:45 +00:00
|
|
|
RPM_DISABLE_RELOCATABLE=YES
|
|
|
|
PACKAGE_NEEDS_CONFIGURE = YES
|
|
|
|
|
2006-03-14 15:30:58 +00:00
|
|
|
SVN_MODULE_NAME = gui
|
|
|
|
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
|
|
|
|
2001-11-22 00:59:30 +00:00
|
|
|
|
2001-01-29 19:49:03 +00:00
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=gui.make
|
1998-02-06 19:12:03 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
1997-09-23 22:43:24 +00:00
|
|
|
|
2001-03-22 21:57:48 +00:00
|
|
|
include ./Version
|
2001-01-19 19:10:45 +00:00
|
|
|
|
2003-09-16 15:12:48 +00:00
|
|
|
# Don't build docs by default
|
|
|
|
doc=no
|
2003-07-20 02:08:22 +00:00
|
|
|
|
1997-09-23 22:43:24 +00:00
|
|
|
#
|
|
|
|
# The list of subproject directories
|
|
|
|
#
|
2001-12-21 14:40:06 +00:00
|
|
|
SUBPROJECTS = \
|
|
|
|
Source \
|
|
|
|
Images \
|
2009-08-01 16:22:31 +00:00
|
|
|
Sounds \
|
2001-12-21 14:40:06 +00:00
|
|
|
Model \
|
|
|
|
Tools \
|
|
|
|
Panels \
|
|
|
|
PrinterTypes \
|
|
|
|
TextConverters \
|
2002-06-02 21:00:34 +00:00
|
|
|
ColorPickers \
|
2001-12-21 18:50:17 +00:00
|
|
|
KeyBindings \
|
2004-07-10 10:19:34 +00:00
|
|
|
Resources \
|
2009-08-23 04:20:11 +00:00
|
|
|
Printing \
|
2011-04-08 18:40:44 +00:00
|
|
|
Themes \
|
|
|
|
Tests
|
2003-07-20 02:08:22 +00:00
|
|
|
|
2009-08-23 07:46:51 +00:00
|
|
|
# Build and install sounds, if sound support is present.
|
|
|
|
SUBPROJECTS += $(BUILD_SOUNDS)
|
|
|
|
|
2003-07-20 02:08:22 +00:00
|
|
|
ifeq ($(doc), yes)
|
|
|
|
SUBPROJECTS += Documentation
|
|
|
|
endif
|
1997-09-23 22:43:24 +00:00
|
|
|
|
1997-10-28 20:44:38 +00:00
|
|
|
-include GNUmakefile.preamble
|
1997-09-23 22:43:24 +00:00
|
|
|
|
1998-02-06 19:12:03 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
2014-05-04 21:19:24 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/Master/deb.make
|
1997-09-23 22:43:24 +00:00
|
|
|
|
2001-03-16 23:27:36 +00:00
|
|
|
include GNUmakefile.postamble
|