git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@7571 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-09-21 03:08:38 +00:00
parent 118e46f214
commit 1a384a142f
3 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2000-09-20 Adam Fedor <fedor@gnu.org>
* bundle.make (internal-bundle-install): Fix previous fix.
* target.make: Don't define BUILD_DLL if shared=no.
2000-09-18 Adam Fedor <fedor@gnu.org>
* configure.in: Check for mingw also

View file

@ -212,7 +212,7 @@ internal-bundle-install:: $(BUNDLE_INSTALL_DIR)
fi; \
fi; \
rm -rf $(BUNDLE_INSTALL_DIR)/$(BUNDLE_DIR_NAME)
$(TAR) cf -X CVS - $(BUNDLE_DIR_NAME) | (cd $(BUNDLE_INSTALL_DIR); $(TAR) xf -)
$(TAR) cf - $(BUNDLE_DIR_NAME) | (cd $(BUNDLE_INSTALL_DIR); $(TAR) xf -)
$(BUNDLE_DIR_NAME)/Resources $(BUNDLE_INSTALL_DIR)::
@$(MKDIRS) $@

View file

@ -641,8 +641,10 @@ endif
#
ifeq ($(findstring mingw32, $(GNUSTEP_TARGET_OS)), mingw32)
HAVE_SHARED_LIBS = yes
ifeq ($(shared), yes)
BUILD_DLL = yes
WITH_DLL = yes
endif
SHARED_LIBEXT = .a
DLL_LIBEXT = .dll
DLLTOOL = dlltool
@ -668,8 +670,10 @@ endif
#
ifeq ($(findstring cygwin, $(GNUSTEP_TARGET_OS)), cygwin)
HAVE_SHARED_LIBS = yes
ifeq ($(shared), yes)
BUILD_DLL = yes
WITH_DLL = yes
endif
SHARED_LIBEXT = .a
DLL_LIBEXT = .dll
DLLTOOL = dlltool