2002-04-21 22:51:21 +00:00
|
|
|
#
|
|
|
|
# Main makefile for GNUstep Backend win32
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Adam Fedor <fedor@gnu.org>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Backend.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-10-29 23:25:10 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
2002-04-21 22:51:21 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2007-10-29 23:25:10 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
2002-04-21 22:51:21 +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 23:25:10 +00:00
|
|
|
# Lesser General Public License for more details.
|
2002-04-21 22:51:21 +00:00
|
|
|
#
|
2007-10-29 23:25:10 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2002-04-21 22:51:21 +00:00
|
|
|
# License along with this library; see the file COPYING.LIB.
|
2007-10-29 23:25:10 +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.
|
2002-04-21 22:51:21 +00:00
|
|
|
|
2006-11-15 17:06:17 +00:00
|
|
|
GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
|
2002-04-21 22:51:21 +00:00
|
|
|
|
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../../back.make
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
include ../../config.make
|
|
|
|
|
|
|
|
# The library to be compiled, as a library or as a bundle
|
|
|
|
SUBPROJECT_NAME=win32
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
win32_LOCALIZED_RESOURCE_FILES = \
|
|
|
|
|
2002-04-21 22:51:21 +00:00
|
|
|
# The C source files to be compiled
|
|
|
|
win32_C_FILES = \
|
|
|
|
|
|
|
|
# The Objective-C source files to be compiled
|
|
|
|
win32_OBJC_FILES = \
|
2003-12-02 23:46:18 +00:00
|
|
|
WIN32Server.m \
|
2005-09-14 15:48:11 +00:00
|
|
|
w32_activate.m \
|
|
|
|
w32_create.m \
|
|
|
|
w32_general.m \
|
|
|
|
w32_movesize.m \
|
|
|
|
w32_text_focus.m \
|
|
|
|
w32_windowdisplay.m \
|
2007-01-31 11:29:41 +00:00
|
|
|
w32_GLformat.m \
|
|
|
|
w32_GLcontext.m \
|
2002-04-21 22:51:21 +00:00
|
|
|
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/subproject.make
|
|
|
|
|
|
|
|
-include GNUmakefile.postamble
|