Changes to support AIX 4.1, libFd with XRAW. Minor bug fixes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3190 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Ovidiu Predescu 1998-11-10 06:49:57 +00:00
parent 67d410cdd6
commit 169cdb30bb
8 changed files with 30 additions and 4 deletions

View file

@ -1,3 +1,22 @@
Mon Nov 9 23:13:28 1998 Ovidiu Predescu <ovidiu@slip.net>
* debugapp.in: Added support for fd-xraw.
* openapp.in: Likewise.
* test-library.make: Use :: for the $(TEST_LIBRARY_NAME) target.
* test-tool.make: Likewise for the $(TEST_TOOL_NAME) target.
Fri Jun 5 02:40:11 1998 Ovidiu Predescu <ovidiu@aracnet.com>
* GNUstep.csh.in: Use braces around variables.
* target.make: Added support for AIX 4.1.
Tue May 26 16:01:37 1998 Ovidiu Predescu <ovidiu@aracnet.com>
* bundle.make (internal-bundle-install): Don't remove the
installed bundle if it exists to avoid removing other binaries
already installed.
* test-tool.make (internal-testtool-uninstall): New target.
Mon Nov 9 16:34:20 1998 Adam Fedor <fedor@doc.com>
* configure.in: Don't assume . in path (Fix from Christopher

View file

@ -1,4 +1,3 @@
#
# brain.make
#

View file

@ -123,7 +123,6 @@ $(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist: $(BUNDLE_DIR_NAME)/Resources
echo "}") >$@
internal-bundle-install:: $(BUNDLE_INSTALL_DIR)
rm -rf $(BUNDLE_INSTALL_DIR)/$(BUNDLE_DIR_NAME)
tar cf - $(BUNDLE_DIR_NAME) | (cd $(BUNDLE_INSTALL_DIR); tar xf -)
$(BUNDLE_DIR_NAME)/Resources $(BUNDLE_INSTALL_DIR)::

View file

@ -253,7 +253,7 @@ ifeq ($(LD), $(CC))
LDFLAGS = -pg -o
endif
OBJ_DIR_PREFIX += profile_
LIBRARY_NAME_SUFFIX := p$(LIBRARY_NAME_SUFFIX)
LIBRARY_NAME_SUFFIX := p$(LIBRARY_NAME_SUFFIX)
endif
ifeq ($(debug), yes)

View file

@ -50,6 +50,8 @@ elif [ "$LIBRARY_COMBO" = gnu-xdps ]; then
LIBRARY_COMBO=gnu-gnu-gnu-xdps
elif [ "$LIBRARY_COMBO" = gnu-xraw ]; then
LIBRARY_COMBO=gnu-gnu-gnu-xraw
elif [ "$LIBRARY_COMBO" = fd-xraw ]; then
LIBRARY_COMBO=gnu-fd-gnu-xraw
elif [ "$LIBRARY_COMBO" = fd-xdps ]; then
LIBRARY_COMBO=gnu-fd-gnu-xdps
fi

View file

@ -50,6 +50,8 @@ elif [ "$LIBRARY_COMBO" = gnu-xdps ]; then
LIBRARY_COMBO=gnu-gnu-gnu-xdps
elif [ "$LIBRARY_COMBO" = gnu-xraw ]; then
LIBRARY_COMBO=gnu-gnu-gnu-xraw
elif [ "$LIBRARY_COMBO" = fd-xraw ]; then
LIBRARY_COMBO=gnu-fd-gnu-xraw
elif [ "$LIBRARY_COMBO" = fd-xdps ]; then
LIBRARY_COMBO=gnu-fd-gnu-xdps
fi

View file

@ -60,6 +60,9 @@ endif
ifeq ($(findstring sysv4.2, $(GNUSTEP_TARGET_OS)), sysv4.2)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lsocket -lnsl -ldl -lm
endif
ifeq ($(findstring aix4.1, $(GNUSTEP_TARGET_OS)), aix4.1)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
endif
#
# Specific settings for building shared libraries, static libraries,

View file

@ -37,7 +37,7 @@ internal-clean:: $(TEST_TOOL_NAME:=.clean.tool.variables)
internal-distclean:: $(TEST_TOOL_NAME:=.distclean.tool.variables)
$(TEST_TOOL_NAME):
$(TEST_TOOL_NAME)::
@$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory $@.all.tool.variables
else
@ -66,6 +66,8 @@ endif
internal-testtool-install::
internal-testtool-uninstall::
internal-testtool-check::
endif