Minor chnages to support static libraries.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@2736 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Ovidiu Predescu 1998-02-06 02:27:22 +00:00
parent 583094298c
commit e790d1bb94
5 changed files with 17 additions and 5 deletions

View file

@ -1,3 +1,15 @@
1998-02-05 Ovidiu Predescu <ovidiu@net-community.com>
* brain.make (GUI_LIBS): Changed the order of the gui and gmodel
libraries.
* library.make (internal-library-all): Added before-all and after-all
in the list of dependencies. The same thing should be added in the
other makefile fragments, maybe using a more general way.
* rules.make (internal-clean): Remove directories that have been
changed too.
* tool.make (internal-tool-install): Add internal-tool-all to the list
of dependencies.
Wed Feb 4 09:01:16 1998 Adam Fedor <fedor@ultra.doc.com>
* target.make: Add TARGET_SYSTEM_LIBS for irix OS.

View file

@ -125,7 +125,7 @@ GUI_LIBS =
#
ifeq ($(GUI_LIB),gnu)
GUI_LDFLAGS =
GUI_LIBS = -lgmodel -lgnustep-gui -lFoundationExt
GUI_LIBS = -lgnustep-gui -lgmodel
GUI_DEFINE = -DGNU_GUI_LIBRARY=1
endif

View file

@ -83,9 +83,9 @@ endif
#
# Compilation targets
#
internal-library-all:: before-$(TARGET)-all $(GNUSTEP_OBJ_DIR) \
internal-library-all:: before-all before-$(TARGET)-all $(GNUSTEP_OBJ_DIR) \
$(GNUSTEP_OBJ_DIR)/$(VERSION_LIBRARY_FILE) import-library \
after-$(TARGET)-all
after-$(TARGET)-all after-all
$(GNUSTEP_OBJ_DIR)/$(VERSION_LIBRARY_FILE): $(C_OBJ_FILES) $(OBJC_OBJ_FILES)
$(LIB_LINK_CMD)

View file

@ -89,7 +89,7 @@ after-uninstall::
before-clean::
internal-clean::
rm -f *~
rm -rf *~
after-clean::

View file

@ -80,7 +80,7 @@ before-$(TARGET)-all::
after-$(TARGET)-all::
internal-tool-install:: internal-install-dirs install-tool
internal-tool-install:: internal-tool-all internal-install-dirs install-tool
internal-install-dirs::
$(GNUSTEP_MAKEFILES)/mkinstalldirs $(TOOL_INSTALLATION_DIR)