~ubuntu-branches/ubuntu/trusty/gnustep-back/trusty

« back to all changes in this revision

Viewing changes to Tools/GNUmakefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Hubert Chathi
  • Date: 2008-07-02 17:19:03 UTC
  • mfrom: (1.2.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080702171903-n1potlcotage8xy0
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
#  Tools level makefile for GNUstep Backend Library
3
 
#
4
 
#  Copyright (C) 1997,1999 Free Software Foundation, Inc.
5
 
#
6
 
#  Author: Scott Christley <scottc@net-community.com>
7
 
#
8
 
#  This file is part of the GNUstep GUI Library.
9
 
#
10
 
#  This library is free software; you can redistribute it and/or
11
 
#  modify it under the terms of the GNU Library General Public
12
 
#  License as published by the Free Software Foundation; either
13
 
#  version 2 of the License, or (at your option) any later version.
14
 
#
15
 
#  This library is distributed in the hope that it will be useful,
16
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
 
#  Library General Public License for more details.
19
 
#
20
 
#  You should have received a copy of the GNU Library General Public
21
 
#  License along with this library; see the file COPYING.LIB.
22
 
#  If not, write to the Free Software Foundation,
23
 
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24
 
 
25
 
GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
26
 
 
27
 
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../back.make
28
 
include $(GNUSTEP_MAKEFILES)/common.make
29
 
 
30
 
srcdir = @srcdir@
31
 
top_srcdir = @top_srcdir@
32
 
top_builddir = ..
33
 
 
34
 
include $(top_srcdir)/Version
35
 
include ../config.make
36
 
 
37
 
# The applications to be compiled
38
 
TOOL_NAME = gpbs
39
 
 
40
 
# The source files to be compiled
41
 
gpbs_OBJC_FILES = gpbs.m
42
 
font_cacher_OBJC_FILES = font_cacher.m
43
 
 
44
 
ifeq ($(BUILD_GRAPHICS),xlib)
45
 
TOOL_NAME += font_cacher
46
 
endif
47
 
 
48
 
ifeq ($(BUILD_SERVER),x11)
49
 
gpbs_OBJC_FILES += xpbs.m 
50
 
ifeq ($(BACKEND_BUNDLE),yes)
51
 
font_cacher_OBJC_FILES += XGCommonFont.m
52
 
gpbs_C_FILES += xdnd.c
53
 
endif
54
 
endif
55
 
 
56
 
ifeq ($(BUILD_SERVER),win32)
57
 
gpbs_OBJC_FILES += win32pbs.m 
58
 
endif
59
 
 
60
 
MAN1_PAGES = gpbs.1
61
 
 
62
 
-include $(srcdir)/GNUmakefile.preamble
63
 
 
64
 
-include $(srcdir)/GNUmakefile.local
65
 
 
66
 
include $(GNUSTEP_MAKEFILES)/tool.make
67
 
 
68
 
VPATH = @srcdir@
69
 
 
70
 
-include $(srcdir)/GNUmakefile.postamble