1997-09-26 16:43:12 +00:00
|
|
|
#
|
|
|
|
# checks makefile for the GNUstep Base Library
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Written by: Scott Christley <scottc@net-community.com>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Base Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; if not, write to the Free
|
1999-09-09 02:56:20 +00:00
|
|
|
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02111, USA.
|
1997-09-26 16:43:12 +00:00
|
|
|
#
|
|
|
|
|
1997-10-30 22:23:50 +00:00
|
|
|
# Install into the system root by default
|
|
|
|
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
|
|
|
|
1998-02-06 17:22:46 +00:00
|
|
|
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
1998-02-05 15:51:18 +00:00
|
|
|
|
2001-01-29 19:40:02 +00:00
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../base.make
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
1997-09-26 16:43:12 +00:00
|
|
|
|
|
|
|
include ../Version
|
|
|
|
include ../config.mak
|
|
|
|
|
|
|
|
# The tools to be compiled
|
1997-10-30 22:23:50 +00:00
|
|
|
TEST_TOOL_NAME = \
|
2000-08-07 22:00:31 +00:00
|
|
|
awake \
|
|
|
|
basic \
|
|
|
|
benchmark \
|
|
|
|
containers \
|
|
|
|
create-abbrevs \
|
|
|
|
create-regions \
|
|
|
|
diningPhilosophers \
|
|
|
|
fref \
|
|
|
|
gstcpport-client \
|
|
|
|
gstcpport-server \
|
|
|
|
nsarchiver \
|
|
|
|
nsarray \
|
|
|
|
nsattributedstring \
|
|
|
|
nsbundle \
|
|
|
|
nscharacterset \
|
|
|
|
nsconnection \
|
|
|
|
nsconnection_client \
|
|
|
|
nsconnection_server \
|
|
|
|
nsdata \
|
|
|
|
nsdate \
|
|
|
|
nsdictionary \
|
|
|
|
nsfilehandle \
|
|
|
|
nshashtable \
|
|
|
|
nshost \
|
|
|
|
nsinvocation \
|
|
|
|
nsmaptable \
|
|
|
|
nsnotification \
|
|
|
|
nsprocessinfo \
|
|
|
|
nsscanner \
|
|
|
|
nsset \
|
|
|
|
nstask \
|
|
|
|
nstimer \
|
|
|
|
nstimezone \
|
|
|
|
release \
|
|
|
|
string \
|
|
|
|
thread-except \
|
|
|
|
values \
|
|
|
|
|
1997-09-26 16:43:12 +00:00
|
|
|
|
1997-10-16 23:56:27 +00:00
|
|
|
# The tool Objective-C source files to be compiled
|
2000-08-07 22:00:31 +00:00
|
|
|
awake_OBJC_FILES = awake.m
|
|
|
|
basic_OBJC_FILES = basic.m
|
1998-10-29 12:51:38 +00:00
|
|
|
benchmark_OBJC_FILES = benchmark.m
|
1999-04-08 12:17:15 +00:00
|
|
|
containers_OBJC_FILES = containers.m
|
2000-08-07 22:00:31 +00:00
|
|
|
create-abbrevs_OBJC_FILES = create-abbrevs.m
|
|
|
|
create-regions_OBJC_FILES = create-regions.m
|
|
|
|
diningPhilosophers_OBJC_FILES = diningPhilosophers.m
|
|
|
|
fref_OBJC_FILES = fref.m
|
|
|
|
gstcpport-client_OBJC_FILES = gstcpport-client.m
|
|
|
|
gstcpport-server_OBJC_FILES = gstcpport-server.m
|
|
|
|
nsarchiver_OBJC_FILES = nsarchiver.m
|
1997-09-26 16:43:12 +00:00
|
|
|
nsarray_OBJC_FILES = nsarray.m
|
|
|
|
nsattributedstring_OBJC_FILES = nsattributedstring.m
|
|
|
|
nsbundle_OBJC_FILES = nsbundle.m
|
2000-08-07 22:00:31 +00:00
|
|
|
nscharacterset_OBJC_FILES = nscharacterset.m
|
|
|
|
nsconnection_OBJC_FILES = nsconnection.m
|
|
|
|
nsconnection_client_OBJC_FILES = nsconnection_client.m
|
|
|
|
nsconnection_server_OBJC_FILES = nsconnection_server.m
|
1997-09-26 16:43:12 +00:00
|
|
|
nsdata_OBJC_FILES = nsdata.m
|
2000-08-07 22:00:31 +00:00
|
|
|
nsdate_OBJC_FILES = nsdate.m
|
1997-09-26 16:43:12 +00:00
|
|
|
nsdictionary_OBJC_FILES = nsdictionary.m
|
|
|
|
nsfilehandle_OBJC_FILES = nsfilehandle.m
|
2000-08-07 22:00:31 +00:00
|
|
|
nshashtable_OBJC_FILES = nshashtable.m
|
1997-09-26 16:43:12 +00:00
|
|
|
nshost_OBJC_FILES = nshost.m
|
1998-08-07 11:56:00 +00:00
|
|
|
nsinvocation_OBJC_FILES = nsinvocation.m
|
1997-09-26 16:43:12 +00:00
|
|
|
nsmaptable_OBJC_FILES = nsmaptable.m
|
|
|
|
nsnotification_OBJC_FILES = nsnotification.m
|
2000-08-07 22:00:31 +00:00
|
|
|
nsprocessinfo_OBJC_FILES = nsprocessinfo.m
|
|
|
|
nsscanner_OBJC_FILES = nsscanner.m
|
|
|
|
nsset_OBJC_FILES = nsset.m
|
1998-01-19 15:20:15 +00:00
|
|
|
nstask_OBJC_FILES = nstask.m
|
1997-09-26 16:43:12 +00:00
|
|
|
nstimer_OBJC_FILES = nstimer.m
|
2000-08-07 22:00:31 +00:00
|
|
|
nstimezone_OBJC_FILES = nstimezone.m
|
|
|
|
prepend_OBJC_FILES = prepend.m
|
1997-09-26 16:43:12 +00:00
|
|
|
release_OBJC_FILES = release.m
|
2000-08-07 22:00:31 +00:00
|
|
|
string_OBJC_FILES = string.m
|
|
|
|
testtool_OBJC_FILES = testtool.m
|
1997-09-26 16:43:12 +00:00
|
|
|
thread-except_OBJC_FILES = thread-except.m
|
2000-08-07 22:00:31 +00:00
|
|
|
values_OBJC_FILES = values.m
|
1997-09-26 16:43:12 +00:00
|
|
|
|
1997-10-16 23:56:27 +00:00
|
|
|
# The bundles to be compiled
|
1998-02-03 14:20:00 +00:00
|
|
|
BUNDLE_NAME=LoadMe
|
1997-10-16 23:56:27 +00:00
|
|
|
|
|
|
|
# The bundle Objective-C source files to be compiled
|
|
|
|
LoadMe_OBJC_FILES = LoadMe.m MyCategory.m SecondClass.m
|
|
|
|
|
|
|
|
# The bundle resource files and directories
|
1998-03-31 16:34:29 +00:00
|
|
|
LoadMe_RESOURCE_FILES = English.lproj/NXStringTable.example
|
1997-10-16 23:56:27 +00:00
|
|
|
LoadMe_RESOURCE_DIRS = English.lproj
|
|
|
|
|
1997-10-30 22:23:50 +00:00
|
|
|
SRCS = $(TEST_TOOL_NAME:=.m)
|
1997-09-27 15:26:51 +00:00
|
|
|
|
1997-09-26 16:43:12 +00:00
|
|
|
HDRS = \
|
1997-10-20 15:28:45 +00:00
|
|
|
server.h \
|
|
|
|
oldserver.h
|
1997-09-26 16:43:12 +00:00
|
|
|
|
|
|
|
DYNAMIC_MFILES = \
|
|
|
|
LoadMe.m \
|
|
|
|
MyCategory.m \
|
|
|
|
SecondClass.m
|
|
|
|
|
|
|
|
DYNAMIC_HFILES = \
|
|
|
|
LoadMe.h \
|
|
|
|
MyCategory.h \
|
|
|
|
SecondClass.h
|
|
|
|
|
1997-09-27 15:26:51 +00:00
|
|
|
DIST_FILES = $(SRCS) $(HDRS) $(DYNAMIC_MFILES) $(DYNAMIC_HFILES) \
|
1997-10-31 22:04:49 +00:00
|
|
|
GNUmakefile Makefile.preamble Makefile.postamble
|
1997-09-27 15:26:51 +00:00
|
|
|
|
1997-09-26 16:43:12 +00:00
|
|
|
-include Makefile.preamble
|
|
|
|
|
1998-12-17 22:22:03 +00:00
|
|
|
-include GNUmakefile.local
|
|
|
|
|
2000-06-17 06:27:00 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/test-tool.make
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
1997-09-26 16:43:12 +00:00
|
|
|
|
|
|
|
-include Makefile.postamble
|