[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re[2]: Making build-headers for framework xxx... ln: `.//Headers/Headers
From: |
Manuel Guesdon |
Subject: |
Re[2]: Making build-headers for framework xxx... ln: `.//Headers/Headers': File exists |
Date: |
Fri, 21 Mar 2003 16:35:57 +0100 (CET) |
Hi Nicola,
On Mon, 3 Feb 2003 01:42:03 +0000 (GMT) Nicola Pero <n.pero@mi.flashnet.it>
wrote:
>| > I've updated make core tree with current cvs and now, each time I want to
>buil already working framework, I get:
>| > <<
>| > Making build-headers for framework MyFramework...
>| > ln: `.//Headers/Headers': File exists
>| > >>
>| >
>| > I think it came from Instance/framework.make around line 210.
>| > Is it "normal" ?
>|
>| Of couse not :-)
>|
>|
>| > How can I correct this ?
>|
>| Can you send a bit more information on what the problem is ? That is, the
>| output of 'make messages=yes'. I can't reproduce this problem, so you
>| need to provide us with more help to figure out what's going wrong.
>|
>| Maybe you are setting some custom variable (some version / directory / ...
>| thing) in a way which no longer works ? Please send me the GNUmakefiles
>| you are using if you think that might be the case.
Back to this problem :-)
I make thing working by adding a -f to $(LN_S) line 211 of
Makefiles/Instance/framework.make
Here is my makefile.
Thnak you !
Manuel
=============================
# Install into the system root by default
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
include $(GNUSTEP_MAKEFILES)/common.make
include ../../Version
include ../../config.mak
srcdir = .
FRAMEWORK_NAME = eCommStep_bko
# The bundle resource files and directories
eCommStep_bko_RESOURCE_FILES =
eCommStep_bko_RESOURCE_DIRS =
# The bundles libraries to link against
#GNUstepWeb_BUNDLE_LIBS =
# The Objective-C source files to be compiled
eCommStep_bko_OBJC_FILES = \
constants.m \
...
# The library to be compiled
LIBRARY_NAME=libeCommStep_bko
# The bundle Objective-C source files to be compiled
libeCommStep_bko_OBJC_FILES = $(eCommStep_bko_OBJC_FILES)
libeCommStep_bko_HEADER_FILES_DIR = .
libeCommStep_bko_HEADER_FILES_INSTALL_DIR = /Frameworks/eCommStep_bko.framework
libeCommStep_bko_HEADER_FILES = \
BKOCom.h \
...
SRCS = $(LIBRARY_NAME:=.m)
HDRS = $(LIBRARY_NAME:=.h)
eCommStepBko_AUTOGSDOC_HEADERS = $(libeCommStep_bko_HEADER_FILES)
eCommStepBko_AUTOGSDOC_SOURCE = $(libeCommStep_bko_OBJC_FILES)
DOCUMENT_NAME = eCommStepBko
eCommStepBko_HEADER_FILES_DIR = $(HEADER_DIR)
eCommStepBko_AGSDOC_FILES = eCommStepBko.gsdoc
$(eCommStepBko_AUTOGSDOC_HEADERS)
#$(eCommStepBko_AUTOGSDOC_SOURCE)
eCommStepBko_AGSDOC_FLAGS = \
-Declared Foundation \
-Standards YES \
-Project eCommStep \
-WordMap '{\
FOUNDATION_EXPORT=extern;FOUNDATION_STATIC_INLINE="";\
GS_GEOM_SCOPE=extern;GS_GEOM_ATTR="";\
GS_EXPORT=extern;GS_DECLARE="";\
GS_RANGE_SCOPE=extern;GS_RANGE_ATTR="";\
GS_ZONE_SCOPE=extern;GS_ZONE_ATTR="";\
}' -Up eCommStepBko
# -SystemProjects System \
DIST_FILES = $(SRCS) $(HDRS) GNUmakefile Makefile.postamble Makefile.preamble
-include Makefile.preamble
include $(GNUSTEP_MAKEFILES)/framework.make
include $(GNUSTEP_MAKEFILES)/library.make
# Only build the doc if doc=yes was passed on the command line
ifeq ($(doc),yes)
include $(GNUSTEP_MAKEFILES)/documentation.make
endif
-include Makefile.postamble
===========================
--
______________________________________________________________________
Manuel Guesdon - ORANGE CONCEPT <mguesdon@orange-concept.com>
14 rue Jean-Baptiste Clement - 93200 Saint-Denis - France
Tel: +33 1 4940 0997 - Fax: +33 1 4940 0998
- Re[2]: Making build-headers for framework xxx... ln: `.//Headers/Headers': File exists,
Manuel Guesdon <=