Include -lm for freebsd and osf

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3599 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-01-28 10:54:52 +00:00
parent 625e603f82
commit c13f68d072

View file

@ -65,12 +65,15 @@ endif
ifeq ($(findstring aix4.1, $(GNUSTEP_TARGET_OS)), aix4.1)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
endif
ifeq ($(findstring freebsd3.0, $(GNUSTEP_TARGET_OS)), freebsd3.0)
ifeq ($(findstring freebsd, $(GNUSTEP_TARGET_OS)), freebsd)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
endif
ifeq ($(findstring netbsd, $(GNUSTEP_TARGET_OS)), netbsd)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
endif
ifeq ($(findstring osf, $(GNUSTEP_TARGET_OS)), osf)
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
endif
#
# Specific settings for building shared libraries, static libraries,