Commit f2eb14ad authored by Marc G. Fournier's avatar Marc G. Fournier

One helluva mess.

	Further extended Makefile.global/build/configure so that we can
have a 'template' file for each OS (and each version of OS, as in BSDi)
which is used as much as possible to generate Makefile.global

	Any future ports should look at using the template file as a basis,
before moving over to Makefile.global.

	This will most probably break alot of the ports, atho I've tried to
be very neat about it...
parent 82a27f23
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.16 1997/04/03 21:25:59 scrappy Exp $ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.17 1997/04/04 07:57:45 scrappy Exp $
# #
# NOTES # NOTES
# Essentially all Postgres make files include this file and use the # Essentially all Postgres make files include this file and use the
...@@ -243,60 +243,22 @@ ifneq ($(wildcard $(SRCDIR)/Makefile.custom), ) ...@@ -243,60 +243,22 @@ ifneq ($(wildcard $(SRCDIR)/Makefile.custom), )
include $(SRCDIR)/Makefile.custom include $(SRCDIR)/Makefile.custom
endif endif
############################################################################# #-------------------------------------------------------------
# include port specific rules and variables. # See the subdirectory template for default settings for these
# #-------------------------------------------------------------
#
# HISTORY: Before October 1996, this file included the following line:
# -include $(MKDIR)/port/postgres.mk.$(PORTNAME)
# Now, we instead have all the former contents of those .mk files inline
# with ifeq ($(PORTNAME) ...). This makes it easier to read the make
# files and to make certain updates. It should also help with the migration
# to autoconf. -Bryan
# Since there are no longer separate files for each platform, much of the
# commonality among the platforms ought to be factored out of the following.
##############################################################################
#
# AR
ifneq (,$(findstring /$(PORTNAME)/, /BSD44_derived/bsdi/sparc/))
AROPT = cq
else
AROPT = crs
endif
##############################################################################
#
# Shared libraries.
# This is overridden for many PORTNAMEs below.
DLSUFFIX= .so
#
# CC
#
CC= @CC@ CC= @CC@
#
# LEX
#
LEX= @LEX@ LEX= @LEX@
AROPT= @AROPT@
CFLAGS= @CPPFLAGS@ CFLAGS= @CPPFLAGS@ @ALL@
CFLAGS_SL= @SHARED_LIBS@
CFLAGS_BE= @BACKEND@
LDFLAGS= @LDFLAGS@ LDFLAGS= @LDFLAGS@
LDADD_BE= @LIBS@ LDADD_BE= @LIBS@
LD_ADD= $(LDADD_BE) LD_ADD= $(LDADD_BE)
DLSUFFIX= @DLSUFFIX@
#---------------------------------------------------------------------- #----------------------------------------------------------------------
ifeq ($(PORTNAME), BSD44_derived) ifeq ($(PORTNAME), BSD44_derived)
# cc is gcc, but never mind about that...
# FreeBSD 2.1R with new Flex v2.5.2 in /usr/local
CFLAGS_SL= -fpic -DPIC
%.so: %.o %.so: %.o
$(LD) -x -r -o $<.obj $< $(LD) -x -r -o $<.obj $<
@echo building shared object $@ @echo building shared object $@
...@@ -316,17 +278,6 @@ ifeq ($(PORTNAME), aix) ...@@ -316,17 +278,6 @@ ifeq ($(PORTNAME), aix)
# symbol names to tell them what to export/import. # symbol names to tell them what to export/import.
MAKE_EXPORTS= true MAKE_EXPORTS= true
#
# Random things that must be passed everywhere to enable
# everything to compile. :-/
#
# The -qmaxmem is because of optimizer limits.
# The HAVE_ANSI_CPP flag indicates that cc isn't ANSI but also doesn't
# have a Reiser (pcc-style) cpp.
#
CFLAGS_BE= -qchars=signed -qmaxmem=4000
EXPSUFF= .exp EXPSUFF= .exp
POSTGRES_EXP= $(SRCDIR)/backend/postgres$(EXPSUFF) POSTGRES_EXP= $(SRCDIR)/backend/postgres$(EXPSUFF)
...@@ -349,57 +300,13 @@ endif ...@@ -349,57 +300,13 @@ endif
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
ifeq ($(PORTNAME), alpha) ifeq ($(PORTNAME), alpha)
# NOFIXADE disallows unaligned access.
# on Ultrix and OSF/1 it invokes an explicit syscall.
# on HP-UX it turns off certain compiler options.
# This is defined here because a bunch of clients include tmp/c.h,
# which is where the work is done on HP-UX. It only affects the
# backend on Ultrix and OSF/1.
ifdef ENFORCE_ALIGNMENT
CFLAGS_BE= -DNOFIXADE
else
CFLAGS_BE= -DNOPRINTADE
endif
# use the regex library
USE_REGEX= 1
%.so: %.o %.so: %.o
$(LD) -shared -expect_unresolved '*' -o $@ $< $(LD) -shared -expect_unresolved '*' -o $@ $<
DASH_N=
BACKSLASH_C= '\\\\c'
endif
#---------------------------------------------------------------------------
ifeq ($(PORTNAME), bsdi)
PRE_BSDI_2_1= false
ifeq ($(shell uname -r), 2.0)
PRE_BSDI_2_1= true
endif
ifeq ($(shell uname -r), 2.01)
PRE_BSDI_2_1= true
endif
ifeq ($(PRE_BSDI_2_1), true)
# cc is gcc v1.42
# gcc is gcc v2.6.3
# use the regex library
USE_REGEX= 1
CFLAGS_BE= -DPRE_BSDI_2_1
endif
DLSUFFIX= .o
endif endif
#-------------------------------------------------------------------------- #--------------------------------------------------------------------------
ifeq ($(PORTNAME), dgux) ifeq ($(PORTNAME), dgux)
CFLAGS_SL= -fpic
%.so: %.o %.so: %.o
$(CC) -shared -o $@ $< $(CC) -shared -o $@ $<
...@@ -410,50 +317,29 @@ endif ...@@ -410,50 +317,29 @@ endif
#---------------------------------------------------------------------------- #----------------------------------------------------------------------------
ifeq ($(PORTNAME), hpux) ifeq ($(PORTNAME), hpux)
# -W l,-E export symbols for linking with the shared libraries
# dynamic loader
ifeq ($(CC), cc)
CFLAGS_BE= -W l,-E
LDFLAGS_BE= -W l,-E
endif
ifeq ($(CC), gcc)
LDADD_BE+= /usr/lib/libdld.sl
endif
ifdef ENFORCE_ALIGNMENT
CFLAGS_BE= -DNOFIXADE
else
HPUX_VERS:= $(shell uname -r)
HPUX_MAJOR= ${HPUX_VERS:R:E}
HPUX_MINOR= ${HPUX_VERS:E}
ifeq ($(HPUX_MAJOR), 08)
CFLAGS_BE+= +u -DHP_S500_ALIGN
LDFLAGS_BE+= +u
else
ifeq ($(HPUX_MAJOR), 09)
ifeq ($(CC), cc)
CFLAGS_BE+= +u4
LDFLAGS_BE+= +u4
endif
endif
endif
endif
# (extended) ANSI flag for cc (-Ae is same as -Aa -D_HPUX_SOURCE) #ifdef ENFORCE_ALIGNMENT
ifeq ($(CC), cc) # CFLAGS_BE= -DNOFIXADE
CFLAGS_BE+= -Ae #else
endif # HPUX_VERS:= $(shell uname -r)
# HPUX_MAJOR= ${HPUX_VERS:R:E}
CFLAGS_SL= +z # HPUX_MINOR= ${HPUX_VERS:E}
DLSUFFIX= .sl # ifeq ($(HPUX_MAJOR), 08)
# CFLAGS_BE+= +u -DHP_S500_ALIGN
# LDFLAGS_BE+= +u
# else
# ifeq ($(HPUX_MAJOR), 09)
# ifeq ($(CC), cc)
# CFLAGS_BE+= +u4
# LDFLAGS_BE+= +u4
# endif
# endif
# endif
#endif
%.sl: %.o %.sl: %.o
$(LD) -b -o $@ $< $(LD) -b -o $@ $<
DASH_N= ''
BACKSLASH_C= '\\\\c'
endif endif
#-------------------------------------------------------------------------- #--------------------------------------------------------------------------
...@@ -461,27 +347,9 @@ endif ...@@ -461,27 +347,9 @@ endif
ifeq ($(PORTNAME), i386_solaris) ifeq ($(PORTNAME), i386_solaris)
# cc won't work! # cc won't work!
#
# Random things that must be passed everywhere to enable
# everything to compile. :-/
#
# The extra -I flag is to scoop up extra BSD-emulating headers.
# This needs to be fixed. Things other than the backend should not be
# accessing headers in the backend directory.
CFLAGS_BE= -I$(SRCDIR)/backend/port/sparc_solaris
ifeq ($(CC), cc)
CFLAGS_SL= -K PIC
else
CFLAGS_SL= -fPIC
endif
%.so: %.o %.so: %.o
$(LD) -G -Bdynamic -o $@ $< $(LD) -G -Bdynamic -o $@ $<
DASH_N=''
BACKSLASH_C='\\\\c'
endif endif
#---------------------------------------------------------------------------- #----------------------------------------------------------------------------
...@@ -494,26 +362,16 @@ RANLIB= touch ...@@ -494,26 +362,16 @@ RANLIB= touch
%.so: %.o %.so: %.o
$(LD) -G -Bdynamic -o $@ $< $(LD_ADD) $(LD) -G -Bdynamic -o $@ $< $(LD_ADD)
DASH_N=''
BACKSLASH_C='\\\\c'
endif endif
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
ifeq ($(PORTNAME), linux) ifeq ($(PORTNAME), linux)
ifndef LINUX_ELF ifdef LINUX_ELF
DLSUFFIX= .o
else
DLSUFFIX= .so
LDFLAGS_BE= -rdynamic LDFLAGS_BE= -rdynamic
endif endif
MK_NO_LORDER= true MK_NO_LORDER= true
# use the regex library
USE_REGEX= 1
CFLAGS_SL= -fpic
%.so: %.o %.so: %.o
$(CC) -shared -o $@ $< $(CC) -shared -o $@ $<
...@@ -522,13 +380,6 @@ endif ...@@ -522,13 +380,6 @@ endif
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
ifeq ($(PORTNAME), sunos4) ifeq ($(PORTNAME), sunos4)
ifeq ($(CC), cc)
CFLAGS_SL= -PIC
else
CFLAGS_SL= -fPIC
endif
%.so: %.o %.so: %.o
$(LD) -dc -dp -Bdynamic -o $@ $< $(LD) -dc -dp -Bdynamic -o $@ $<
endif endif
...@@ -536,66 +387,34 @@ endif ...@@ -536,66 +387,34 @@ endif
#---------------------------------------------------------------------------- #----------------------------------------------------------------------------
ifeq ($(PORTNAME), sparc_solaris) ifeq ($(PORTNAME), sparc_solaris)
#
# Random things that must be passed everywhere to enable
# everything to compile. :-/
#
# The extra -I flag is to scoop up extra BSD-emulating headers.
CFLAGS_BE= -I$(SRCDIR)/backend/port/sparc_solaris
ifeq ($(CC), cc)
CFLAGS_SL= -K PIC
else
CFLAGS_SL= -fPIC
endif
%.so: %.o %.so: %.o
$(LD) -G -Bdynamic -o $@ $< $(LD) -G -Bdynamic -o $@ $<
DASH_N= ''
BACKSLASH_C= '\\\\c'
endif endif
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
ifeq ($(PORTNAME), svr4) ifeq ($(PORTNAME), svr4)
CFLAGS+= -W0
YACC= bison -y YACC= bison -y
# MAKE_EXPORTS is required for svr4 loaders that want a file of # MAKE_EXPORTS is required for svr4 loaders that want a file of
# symbol names to tell them what to export/import. # symbol names to tell them what to export/import.
MAKE_EXPORTS= true MAKE_EXPORTS= true
#
# Random things that must be passed everywhere to enable
# everything to compile. :-/
#
# The extra -I flag is to scoop up extra BSD-emulating headers.
CFLAGS_BE+= -I$(SRCDIR)/backend/port/svr4
LDADD_BE+= /usr/ucblib/libucb.a LDADD_BE+= /usr/ucblib/libucb.a
LDFLAGS_BE= -LD-Blargedynsym LDFLAGS_BE= -LD-Blargedynsym
%.so: %.o %.so: %.o
$(LD) -G -Bdynamic -o $@ $< $(LD) -G -Bdynamic -o $@ $<
DASH_N= ''
BACKSLASH_C= '\\\\c'
endif endif
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
ifeq ($(PORTNAME), ultrix4) ifeq ($(PORTNAME), ultrix4)
ifdef ENFORCE_ALIGNMENT
CFLAGS_BE= -DNOFIXADE
endif
# install creates intermediate directories # install creates intermediate directories
NO_BEFOREINSTL= true NO_BEFOREINSTL= true
CFLAGS_SL= -G 0
DLSUFFIX= .o
endif endif
...@@ -605,10 +424,6 @@ endif ...@@ -605,10 +424,6 @@ endif
# The univel port is almost guaranteed NOT to work yet. # The univel port is almost guaranteed NOT to work yet.
# #
ifeq ($(PORTNAME), univel) ifeq ($(PORTNAME), univel)
#CFLAGS+= -DHAVE_RUSAGE -DTRACEDEBUG -DASYNC_DEBUG
CFLAGS+= -DHAVE_RUSAGE -m486 -Dsvr4
CFLAGS_SL= -fPIC
YACC= bison -y YACC= bison -y
# #
...@@ -621,29 +436,13 @@ LDADD= $(LD_ADD) ...@@ -621,29 +436,13 @@ LDADD= $(LD_ADD)
# symbol names to tell them what to export/import. # symbol names to tell them what to export/import.
#MAKE_EXPORTS= true #MAKE_EXPORTS= true
#
# Random things that must be passed everywhere to enable
# everything to compile. :-/
#
# The extra -I flag is to scoop up extra BSD-emulating headers.
CFLAGS_BE+= -I$(SRCDIR)/backend/port/univel
%.so: %.o %.so: %.o
$(LD) -G -Bdynamic -o $@ $< $(LD) -G -Bdynamic -o $@ $<
DASH_N= ''
BACKSLASH_C= '\\\\c'
INSTALL= /usr/ucb/install INSTALL= /usr/ucb/install
endif endif
#---------------------------------------------------------------------------
ifeq ($(PORTNAME), nextstep)
AROPT= rc
DLSUFFIX= .o
endif
# This goes here so that customization in Makefile.custom is effective # This goes here so that customization in Makefile.custom is effective
############################################################################## ##############################################################################
......
...@@ -13,23 +13,53 @@ else ...@@ -13,23 +13,53 @@ else
ECHO_C='\c' ECHO_C='\c'
fi fi
$ECHO_N "Additional directories to search for .h files []: $ECHO_C" ls template
TEMPLATE=generic
$ECHO_N "Appropriate template file [$TEMPLATE]: $ECHO_C"
read a read a
if [ "$a." = "." ] if [ "$a." = " ." ]
then then
ADD_INC_DIRS= echo "You must choose an appropriate template file"
exit
else else
ADD_INC_DIRS=`echo "$a" | sed 's@ *@ @g; s@^\([^ ]\)@-I\1@; s@ \([^ ]\)@ -I\1@g'` if [ "$a." = "." ]; then
INC_CFLAGS="$ADD_INC_DIRS" TEMPLATE=template/$TEMPLATE
CPPFLAGS="$ADD_INC_DIRS" ; export CPPFLAGS else
TEMPLATE=template/$a
fi
AROPT=`grep AROPT $TEMPLATE | awk -F: '{print $2}'`
SHARED_LIBS=`grep SHARED_LIBS $TEMPLATE | awk -F: '{print $2}'`
ALL=`grep ALL $TEMPLATE | awk -F: '{print $2}'`
BACKEND=`grep BACKEND $TEMPLATE | awk -F: '{print $2}'`
SRCH_INC=`grep SRCH_INC $TEMPLATE | awk -F: '{print $2}'`
SRCH_LIB=`grep SRCH_LIB $TEMPLATE | awk -F: '{print $2}'`
USE_LOCALE=`grep USE_LOCALE $TEMPLATE | awk -F: '{print $2}'`
fi fi
$ECHO_N "Additional directories to search for library files []: $ECHO_C" $ECHO_N "Additional directories to search for .h files [$SRCH_INC]: $ECHO_C"
read a read a
if [ "$a." != "." ] if [ "$a." = " ." ]
then
CPPFLAGS=
else
if [ "$a." != "." ]; then
SRCH_INC = $a
fi
echo $a
CPPFLAGS=`echo "$SRCH_INC" | sed 's@ *@ @g; s@^\([^ ]\)@-I\1@; s@ \([^ ]\)@ -I\1@g'`
fi
echo ""
$ECHO_N "Additional directories to search for library files [$SRCH_LIB]: $ECHO_C"
read a
if [ "$a." != " ." ]
then then
ADD_LIB_DIRS=`echo "$a" | sed 's@ *@ @g; s@^\([^ ]\)@-L\1@; s@ \([^ ]\)@ -L\1@g'` LDFLAGS=
LDFLAGS="$ADD_LIB_DIRS" ; export LDFLAGS else
if [ "$a." != "." ]; then
SRCH_LIB = $a
fi
LDFLAGS=`echo "$SRCH_LIB" | sed 's@ *@ @g; s@^\([^ ]\)@-L\1@; s@ \([^ ]\)@ -L\1@g'`
fi fi
IDIR=/usr/local/pgsql IDIR=/usr/local/pgsql
...@@ -40,13 +70,16 @@ then ...@@ -40,13 +70,16 @@ then
IDIR=${a} IDIR=${a}
fi fi
USE_LOCALE=no
echo "Define USE_LOCALE to get Postgres work (sort, search)" echo "Define USE_LOCALE to get Postgres work (sort, search)"
$ECHO_N "with national alphabet. [$USE_LOCALE]: $ECHO_C" $ECHO_N "with national alphabet. [$USE_LOCALE]: $ECHO_C"
read a read a
if [ "$a." != "." ] if [ "$a." != " ." ]
then then
USE_LOCALE=${a} USE_LOCALE=no
else
if [ "$a." != "." ]; then
USE_LOCALE=$a
fi
fi fi
DEF_PGPORT=5432 DEF_PGPORT=5432
...@@ -72,7 +105,8 @@ then ...@@ -72,7 +105,8 @@ then
NOHBA=${a} NOHBA=${a}
fi fi
export BUILDRUN USE_LOCALE DEF_PGPORT NOHBA export BUILDRUN USE_LOCALE DEF_PGPORT NOHBA AROPT
export SHARED_LIBS CFLAGS CPPFLAGS LDFLAGS
./configure --prefix=${IDIR} ./configure --prefix=${IDIR}
This diff is collapsed.
...@@ -43,18 +43,23 @@ nextstep*) PORTNAME='nextstep';; ...@@ -43,18 +43,23 @@ nextstep*) PORTNAME='nextstep';;
echo "" echo ""
exit;; exit;;
esac esac
AC_CONFIG_HEADER(include/config.h)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_LINK_FILES(port/${PORTNAME}.h, include/os.h) AC_LINK_FILES(port/${PORTNAME}.h, include/os.h)
AC_SUBST(PORTNAME) AC_SUBST(PORTNAME)
AC_SUBST(TR) AC_SUBST(TR)
AC_SUBST(LDFLAGS) AC_SUBST(LDFLAGS)
AC_SUBST(CPPFLAGS) AC_SUBST(CPPFLAGS)
AC_SUBST(AROPT)
AC_SUBST(SHARED_LIBS)
AC_SUBST(ALL)
AC_SUBST(BACKEND)
AC_CONFIG_HEADER(include/config.h)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
dnl **************************************************************** dnl ****************************************************************
dnl Hold off on the C++ stuff until we can figure out why it doesn't dnl Hold off on the C++ stuff until we can figure out why it doesn't
......
AROPT:cq
BACKEND:-qchars=signed -qmaxmem=4000
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
# NOFIXADE disallows unaligned access.
# on Ultrix and OSF/1 it invokes an explicit syscall.
# on HP-UX it turns off certain compiler options.
# This is defined here because a bunch of clients include tmp/c.h,
# which is where the work is done on HP-UX. It only affects the
# backend on Ultrix and OSF/1.
BACKEND:-DNOFIXADE
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:crs
BACKEND:-DPRE_BSDI_2_1
SHARED_LIB:
ALL:
SRCH_INC:/usr/local/include
SRCH_LIB:/usr/local/lib
USE_LOCALE:no
DLSUFFIX:.o
AROPT:crs
BACKEND:
SHARED_LIB:
ALL:
SRCH_INC:/usr/local/include
SRCH_LIB:/usr/local/lib
USE_LOCALE:no
DLSUFFIX:.o
AROPT:cq
BACKEND:
SHARED_LIB:-fpic
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:crs
BACKEND:
SHARED_LIB:-fpic -DPIC
ALL:-O2 -m486 -pipe
SRCH_INC:/usr/local/include
SRCH_LIB:/usr/local/lib
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:-W l,-E -Ae -DNOFIXADE
SHARED_LIB:+z
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.sl
AROPT:cq
BACKEND:-DNOFIXADE
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DL_LIB:/usr/lib/libdld.sl
DLSUFFIX:.sl
AROPT:cq
BACKEND:-I$(SRCDIR)/backend/port/sparc_solaris
SHARED_LIB:-K PIC
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:-I$(SRCDIR)/backend/port/sparc_solaris
SHARED_LIB:-fPIC
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:-fpic
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:-fpic
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX=.o
AROPT:rc
BACKEND:
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.o
AROPT:crs
BACKEND:
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:-I$(SRCDIR)/backend/port/sparc_solaris
SHARED_LIB:-K PIC
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:-I$(SRCDIR)/backend/port/sparc_solaris
SHARED_LIB:-fPIC
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:-PIC
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:
SHARED_LIB:-fPIC
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:-I$(SRCDIR)/backend/port/svr4
SHARED_LIB:
ALL:+W0
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
AROPT:cq
BACKEND:-DNOFIXADE
SHARED_LIB:-G 0
ALL:
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.o
AROPT:cq
BACKEND:-I$(SRCDIR)/backend/port/univel
SHARED_LIB:-fPIC
ALL:-DHAVE_RUSAGE -m486 -Dsvr4
SRCH_INC:
SRCH_LIB:
USE_LOCALE:no
DLSUFFIX:.so
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment