1997-10-01 18:53:50 +00:00
|
|
|
#
|
|
|
|
# NSTimeZones makefile for GNUstep Base Library
|
|
|
|
# Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Written by: Adam Fedor <fedor@doc.com>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Base Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-09-14 11:36:11 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
1997-10-01 18:53:50 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2007-09-14 11:36:11 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
1997-10-01 18:53:50 +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
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
2007-09-14 11:36:11 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
1997-10-01 18:53:50 +00:00
|
|
|
# License along with this library; if not, write to the Free
|
2007-02-19 14:26:53 +00:00
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02111 USA.
|
1997-10-01 18:53:50 +00:00
|
|
|
|
2007-02-20 00:09:10 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
|
|
|
endif
|
2007-02-19 14:26:53 +00:00
|
|
|
|
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
|
|
|
|
endif
|
|
|
|
|
2008-12-19 12:53:30 +00:00
|
|
|
PACKAGE_NAME = gnustep-base
|
2007-02-20 00:09:10 +00:00
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../base.make
|
|
|
|
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
1997-10-01 18:53:50 +00:00
|
|
|
|
|
|
|
include ../Version
|
|
|
|
include ../config.mak
|
2009-01-07 12:26:30 +00:00
|
|
|
include ../Source/pathconfig/pathconfig.mak
|
1997-10-01 18:53:50 +00:00
|
|
|
|
2007-03-09 19:09:08 +00:00
|
|
|
libgnustep-base_INTERFACE_VERSION=$(MAJOR_VERSION).$(MINOR_VERSION)
|
|
|
|
|
|
|
|
resourcedir = $(GNUSTEP_LIBRARY)/Libraries/gnustep-base/Versions/$(libgnustep-base_INTERFACE_VERSION)/Resources
|
1997-10-01 18:53:50 +00:00
|
|
|
|
|
|
|
TIMEZONE_ARCHIVE = \
|
|
|
|
NSTimeZones.tar
|
|
|
|
|
|
|
|
-include Makefile.preamble
|
|
|
|
|
1998-12-17 22:22:03 +00:00
|
|
|
-include GNUmakefile.local
|
|
|
|
|
1997-10-01 18:53:50 +00:00
|
|
|
# We don't actually build anything in this directory so
|
|
|
|
# just include the common makefile rules
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/rules.make
|
1997-10-01 18:53:50 +00:00
|
|
|
|
|
|
|
-include Makefile.postamble
|