mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-21 02:31:01 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16506 72102866-910b-0410-8b05-ffd578937521
101 lines
2.7 KiB
Makefile
101 lines
2.7 KiB
Makefile
#
|
|
# GNUmakefile
|
|
#
|
|
# Copyright (C) 2000 Stefan Urbanek
|
|
#
|
|
# This file is part of the StepTalk.
|
|
#
|
|
# 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
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
include ../Version
|
|
|
|
LIBRARY_NAME = libStepTalk
|
|
|
|
libStepTalk_OBJC_FILES = \
|
|
NSInvocation+additions.m \
|
|
STBehaviourInfo.m \
|
|
STBundleInfo.m \
|
|
STClassInfo.m \
|
|
STEngine.m \
|
|
STEnvironment.m \
|
|
STEnvironmentDescription.m \
|
|
STExterns.m \
|
|
STFunctions.m \
|
|
STLanguage.m \
|
|
STObjCRuntime.m \
|
|
STObjectReference.m \
|
|
STScript.m \
|
|
STScriptsManager.m \
|
|
STScripting.m \
|
|
STSelector.m \
|
|
STStructure.m \
|
|
STUndefinedObject.m \
|
|
NSNumber+additions.m \
|
|
NSObject+additions.m
|
|
|
|
STEPTALK_HEADER_FILES = \
|
|
STBundleInfo.h \
|
|
STEngine.h \
|
|
STEnvironment.h \
|
|
STExterns.h \
|
|
STFunctions.h \
|
|
STLanguage.h \
|
|
STObjCRuntime.h \
|
|
STObjectReference.h \
|
|
STScript.h \
|
|
STScriptsManager.h \
|
|
STScripting.h \
|
|
STSelector.h \
|
|
STUndefinedObject.h \
|
|
NSInvocation+additions.h \
|
|
NSObject+additions.h
|
|
|
|
libStepTalk_HEADER_FILES = $(STEPTALK_HEADER_FILES) \
|
|
StepTalk.h
|
|
libStepTalk_HEADER_FILES_DIR = Headers/StepTalk
|
|
|
|
libStepTalk_HEADER_FILES_INSTALL_DIR = StepTalk
|
|
|
|
STEPTALK_LIBRARY_DIR = $(GNUSTEP_INSTALLATION_DIR)/Library/StepTalk
|
|
STEPTALK_ENVDEFS_DIR = $(STEPTALK_LIBRARY_DIR)/Environments
|
|
|
|
ADDITIONAL_INCLUDE_DIRS += -I./Headers
|
|
|
|
ADDITIONAL_CPPFLAGS += -pipe
|
|
ADDITIONAL_OBJCFLAGS = -Wno-import -DSTEPTALK_VERSION=$(STEPTALK_VERSION)
|
|
|
|
DOCUMENT_NAME = StepTalk
|
|
|
|
StepTalk_DOC_INSTALL_DIR = Developer
|
|
|
|
StepTalk_HEADER_FILES_DIR = $(HEADER_DIR)
|
|
StepTalk_AGSDOC_FILES = StepTalk.gsdoc $(STEPTALK_HEADER_FILES)
|
|
StepTalk_AGSDOC_FLAGS = \
|
|
-HeaderDirectory Headers/StepTalk \
|
|
-Up StepTalk \
|
|
-Declared StepTalk
|
|
# -DocumentationDirectory ../Documentation/StepTalk \
|
|
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
include $(GNUSTEP_MAKEFILES)/library.make
|
|
include $(GNUSTEP_MAKEFILES)/documentation.make
|
|
|
|
-include GNUmakefile.postamble
|