mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Fix mailing address again.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/branches/dawn_6@4717 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
37dbe7f4a9
commit
2a68e8e254
2 changed files with 37 additions and 29 deletions
|
@ -1,3 +1,11 @@
|
|||
1999-08-09 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GNUstep.csh.in: Fix the setting of GNUSTEP_MAKEFILES (patch
|
||||
from Christopher Seawood <cls@seawood.org>).
|
||||
|
||||
* target.make: Change freebsd3 to freebsd to find all versions,
|
||||
except put freebsd2 first so it is still unique.
|
||||
|
||||
1999-08-09 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
Fixes so that things don't bomb out if you don't have write access
|
||||
|
|
58
target.make
58
target.make
|
@ -291,35 +291,6 @@ endif
|
|||
#
|
||||
####################################################
|
||||
|
||||
####################################################
|
||||
#
|
||||
# FreeBSD ELF
|
||||
#
|
||||
ifeq ($(findstring freebsd3, $(GNUSTEP_TARGET_OS)), freebsd3)
|
||||
HAVE_SHARED_LIBS = yes
|
||||
SHARED_LIB_LINK_CMD = \
|
||||
$(CC) -shared -Wl,-soname,$(VERSION_LIBRARY_FILE) \
|
||||
-o $(GNUSTEP_OBJ_DIR)/$(VERSION_LIBRARY_FILE) $^ ;\
|
||||
(cd $(GNUSTEP_OBJ_DIR); \
|
||||
rm -f $(LIBRARY_FILE); \
|
||||
$(LN_S) $(VERSION_LIBRARY_FILE) $(LIBRARY_FILE))
|
||||
OBJ_MERGE_CMD = \
|
||||
$(CC) -nostdlib -r -o $(GNUSTEP_OBJ_DIR)/$(SUBPROJECT_PRODUCT) $^ ;
|
||||
|
||||
SHARED_CFLAGS += -fPIC
|
||||
SHARED_LIBEXT = .so
|
||||
|
||||
HAVE_BUNDLES = yes
|
||||
BUNDLE_LD = $(CC)
|
||||
BUNDLE_CFLAGS += -fPIC
|
||||
BUNDLE_LDFLAGS += -shared
|
||||
ADDITIONAL_LDFLAGS += -rdynamic
|
||||
endif
|
||||
#
|
||||
# end FreeBSD
|
||||
#
|
||||
####################################################
|
||||
|
||||
####################################################
|
||||
#
|
||||
# FreeBSD a.out (2.2.x)
|
||||
|
@ -347,6 +318,35 @@ endif
|
|||
#
|
||||
####################################################
|
||||
|
||||
####################################################
|
||||
#
|
||||
# FreeBSD ELF
|
||||
#
|
||||
ifeq ($(findstring freebsd, $(GNUSTEP_TARGET_OS)), freebsd)
|
||||
HAVE_SHARED_LIBS = yes
|
||||
SHARED_LIB_LINK_CMD = \
|
||||
$(CC) -shared -Wl,-soname,$(VERSION_LIBRARY_FILE) \
|
||||
-o $(GNUSTEP_OBJ_DIR)/$(VERSION_LIBRARY_FILE) $^ ;\
|
||||
(cd $(GNUSTEP_OBJ_DIR); \
|
||||
rm -f $(LIBRARY_FILE); \
|
||||
$(LN_S) $(VERSION_LIBRARY_FILE) $(LIBRARY_FILE))
|
||||
OBJ_MERGE_CMD = \
|
||||
$(CC) -nostdlib -r -o $(GNUSTEP_OBJ_DIR)/$(SUBPROJECT_PRODUCT) $^ ;
|
||||
|
||||
SHARED_CFLAGS += -fPIC
|
||||
SHARED_LIBEXT = .so
|
||||
|
||||
HAVE_BUNDLES = yes
|
||||
BUNDLE_LD = $(CC)
|
||||
BUNDLE_CFLAGS += -fPIC
|
||||
BUNDLE_LDFLAGS += -shared
|
||||
ADDITIONAL_LDFLAGS += -rdynamic
|
||||
endif
|
||||
#
|
||||
# end FreeBSD
|
||||
#
|
||||
####################################################
|
||||
|
||||
####################################################
|
||||
#
|
||||
# NetBSD
|
||||
|
|
Loading…
Reference in a new issue