mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 14:20:50 +00:00
Added IRIX to target.make
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3713 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b954c920ba
commit
e9e42dba94
2 changed files with 33 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Feb 15 1999 Michael Hanni <mhanni@sprintmail.com>
|
||||
|
||||
* Added IRIX to target.make as requested.
|
||||
|
||||
Mon Feb 15 8:48:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* aggregate.make: Strip space from name variable before use.
|
||||
|
|
29
target.make
29
target.make
|
@ -399,6 +399,35 @@ endif
|
|||
#
|
||||
####################################################
|
||||
|
||||
####################################################
|
||||
#
|
||||
# IRIX
|
||||
#
|
||||
ifeq ($(findstring irix, $(GNUSTEP_TARGET_OS)), irix)
|
||||
#HAVE_SHARED_LIBS = yes
|
||||
STATIC_LIB_LINK_CMD = \
|
||||
(cd $(GNUSTEP_OBJ_DIR); $(AR) $(ARFLAGS) \
|
||||
$(VERSION_LIBRARY_FILE) `ls -1 *\.o */*\.o`);\
|
||||
$(RANLIB) $(VERSION_LIBRARY_FILE)
|
||||
SHARED_LIB_LINK_CMD = \
|
||||
(cd $(GNUSTEP_OBJ_DIR); $(CC) -v $(SHARED_CFLAGS) -shared -o
|
||||
$(VERSION_LIBRARY_FILE) `ls -1 *\.o */*\.o` ;\
|
||||
rm -f $(LIBRARY_FILE); \
|
||||
$(LN_S) $(VERSION_LIBRARY_FILE) $(LIBRARY_FILE))
|
||||
|
||||
SHARED_CFLAGS += -fPIC
|
||||
SHARED_LIBEXT = .sl
|
||||
|
||||
HAVE_BUNDLES = yes
|
||||
BUNDLE_LD = $(CC)
|
||||
BUNDLE_CFLAGS += -fPIC
|
||||
BUNDLE_LDFLAGS += -nodefaultlibs -Xlinker -r
|
||||
endif
|
||||
|
||||
# end IRIX
|
||||
#
|
||||
####################################################
|
||||
|
||||
####################################################
|
||||
#
|
||||
# Solaris
|
||||
|
|
Loading…
Reference in a new issue