Set default targete libs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/branches/freeze-1_0_0@9514 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-04-01 02:40:53 +00:00
parent 9ec8d5c799
commit ed6afcbccf
4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2001-03-31 Adam Fedor <fedor@gnu.org>
* target.make (TARGET_SYSTEM_LIBS): Set default libs.
2001-03-30 Adam Fedor <fedor@gnu.org>
* target.make: Define TARGET_SYSTEM_LIBS for cygwin.

View file

@ -28,7 +28,7 @@ where to get various files.
1. First, start up a Cygwin BASH shell and make sure the MinGW tools
are in your path:
export PATH=//c/gcc-2.95.2-1/bin:$PATH
export PATH=//c/mingw/bin:$PATH
(Put in whatever path you have for the mingw tools).

View file

@ -534,7 +534,7 @@ work.
@table @samp
@item Recommended compiler
gcc 2.95.2 (Cygwin release 1.1.2 or later)
gcc 2.95.3 (Cygwin release 1.1.8)
@item Extra libs needed
Objective-C library DLL (@url{ftp://ftp.gnustep.org/pub/gnustep/libs})
@ -547,7 +547,7 @@ For shared libs, make sure to specify @var{shared=yes} explicitly when
building:
@example
make target=ix86-mingw32 shared=yes
make shared=yes
@end example
For static libs, use @var{shared=no}, Make sure files and compilation

View file

@ -35,6 +35,8 @@ endif
#
# Target specific libraries
#
TARGET_SYSTEM_LIBS = $(CONFIG_SYSTEM_LIBS) -lm
ifeq ($(findstring mingw32, $(GNUSTEP_TARGET_OS)), mingw32)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) \
-lwsock32 -ladvapi32 -lcomctl32 -luser32 -lcomdlg32 \