Skip to content
Snippets Groups Projects
Commit 42e0d83c authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Initial revision

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 478 additions and 0 deletions
#
# HP-UX optional c89 Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC=c89
# ranlib not needed under HP-UX
RANLIB = ""
# install under HP-UX is not like on BSD systems, so we use our own script
INSTALL=$(LDAPSRC)/build/install.sh
# we need to link a separate library to get ndbm routines under HP/UX
LDBMLIB=-lndbm
# we need to link in the V3 library to get sigset()
PLATFORMLIBS= -lV3
PLATFORMCFLAGS= -Dhpux -Aa -D_HPUX_SOURCE
#
# LDAP HP-UX standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# ranlib not needed under HP-UX
RANLIB = ""
# install under HP-UX is not like on BSD systems, so we use our own script
INSTALL=$(LDAPSRC)/build/install.sh
# we need to link a separate library to get ndbm routines under HP/UX
LDBMLIB=-lndbm
PLATFORMCFLAGS= -Dhpux
# we need to link in the V3 library to get sigset()
PLATFORMLIBS= -lV3
#
# the HP-UX cc compiler doesn't understand function prototypes, so we
# need the unproto preprocessor
#
NEEDUNPROTO=yes
UNPROTOCFLAGS=-tp,$(LDAPSRC)/build/unproto/cpp
#
# LDAP HP-UX gcc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC=gcc
# ranlib not needed under HP-UX
RANLIB = ""
# install under HP-UX is not like on BSD systems, so we use our own script
INSTALL=$(LDAPSRC)/build/install.sh
# we need to link a separate library to get ndbm routines under HP/UX
LDBMLIB=-lndbm
# we need to link in the V3 library to get sigset()
PLATFORMLIBS= -lV3
PLATFORMCFLAGS= -Dhpux
#
# LDAP IRIX standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# ranlib not needed under IRIX
RANLIB = ""
# be explicit about which CC to use
CC=cc
# give full path to hostname since it may not be in user's path
HOSTNAME=/usr/bsd/hostname
# don't count on a BSD install being present or first in path
INSTALL=$(LDAPSRC)/build/install.sh
PLATFORMCFLAGS=-DUSE_WAITPID
PLATFORMLIBS=
THREADS=
THREADSLIB=
#
# LDAP IRIX standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# ranlib not needed under IRIX
RANLIB = ""
# be explicit about which CC to use
CC=gcc
# give full path to hostname since it may not be in user's path
HOSTNAME=/usr/bsd/hostname
# don't count on a BSD install being present or first in path
INSTALL=$(LDAPSRC)/build/install.sh
PLATFORMCFLAGS=-DUSE_WAITPID
PLATFORMLIBS=
THREADS=
THREADSLIB=
#
# LDAP Linux GNU C Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC = gcc
RANLIB = "ranlib"
PLATFORMCFLAGS= -Dlinux
#
# LDAP SVR4 standard cc Make-platform file
#
# Uses the std SVR4 stuff whenever possible.
# Some references to the BSD compatibility required.
#
#
# add any platform-specific overrides below here
#
# compiler to use, e.g. CC=cc or CC=gcc
CC = cc
# flags added to every compile
# Use the BSD include files but only after the SVR4 files.
PLATFORMCFLAGS= -DSYSV -DSVR4 -I/usr/include -I/usr/ucbinclude
# flags added to every link
PLATFORMLDFLAGS =
# extra libraries needed (added to the end of all link commands)
PLATFORMLIBS = -lnsl -lnet -lsocket
# ndbm library, needed if not in libc (e.g. LDBMLIB=-lndbm)
LDBMLIB = -L/usr/ucblib -lucb
# BSD-like install command; if necessary, you can use a script
INSTALL = /usr/ucb/install
# command to convert libraries for efficient random access;
RANLIB = ""
# other commands - see the file build/Make-append for a list
#
# LDAP NetBSD cc Make-platform file
# on NetBSD, cc is gcc
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC = gcc
PLATFORMCFLAGS= -Dnetbsd
#
# LDAP NetBSD GNU C Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC = gcc
PLATFORMCFLAGS= -Dnetbsd
#
# LDAP NeXTSTEP cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
PLATFORMCFLAGS= -Dnextstep
PLATFORMLDFLAGS= -all_load
#
# LDAP OSF1 standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# Even though prototypes are supported by the compiler, OSF's CC doesn't
# seem to define __STDC__ so we explicitly defined NEEDPROTOS here.
PLATFORMCFLAGS= -Dosf1 -DNEEDPROTOS
PLATFORMLDFLAGS=
THREADS= -DTHREAD_DCE_PTHREADS
THREADSLIB= -lpthreads
# the BSD-like install under OSF/1 is called installbsd
INSTALL=installbsd
#
# LDAP SCO standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# ranlib not needed under SCO
RANLIB = ""
# be explicit about which CC to use
CC=/bin/cc
# don't count on /usr/ucb/install being present or first in path
INSTALL=$(LDAPSRC)/build/install.sh
PLATFORMCFLAGS= -DSCO -DNEED_BSDREGEX -DSYSV -DNOTERMCAP
PLATFORMLIBS= -lsocket -lnsl_s
#
# LDAP SCO gcc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# ranlib not needed under SCO
RANLIB = ""
CC=gcc
# don't count on /usr/ucb/install being present or first in path
INSTALL=$(LDAPSRC)/build/install.sh
PLATFORMCFLAGS= -DSCO -DNEED_BSDREGEX -DSYSV -DNOTERMCAP
PLATFORMLIBS= -lsocket -lnsl_s
#
# LDAP SunOS standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
5LINT = /usr/5bin/lint
PLATFORMCFLAGS= -Dsunos4
THREADS= -DTHREAD_SUNOS4_LWP
THREADSLIB=-llwp
#
# the SunOS 4 cc compiler doesn't understand function prototypes, so we
# need the unproto preprocessor
#
NEEDUNPROTO=yes
UNPROTOCFLAGS=-Qpath $(LDAPSRC)/build/unproto
#
# LDAP SunOS GNU C Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC = gcc
5LINT = /usr/5bin/lint
PLATFORMCFLAGS= -Dsunos4
THREADS= -DTHREAD_SUNOS4_LWP
THREADSLIB=-llwp
#
# LDAP SunOS5 standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
# ranlib not needed under SunOS5
RANLIB = ""
# be explicit about which CC to use
CC=cc
# give full path to hostname since it may not be in user's path
HOSTNAME=/usr/ucb/hostname
# don't count on /usr/ucb/install being present or first in path
INSTALL=$(LDAPSRC)/build/install.sh
PLATFORMCFLAGS= -Dsunos5 -D_REENTRANT
PLATFORMLIBS= -lsocket -lnsl -lgen
THREADS= -DTHREAD_SUNOS5_LWP
THREADSLIB=-lthread
#
# LDAP SunOS5 GNU C Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC = gcc
# ranlib not needed under SunOS5
RANLIB = ""
# give full path to hostname since it may not be in user's path
HOSTNAME=/usr/ucb/hostname
# don't count on /usr/ucb/install being present or first in path
INSTALL=$(LDAPSRC)/build/install.sh
PLATFORMCFLAGS= -Dsunos5 -D_REENTRANT
PLATFORMLIBS= -lsocket -lnsl -lgen
THREADS= -DTHREAD_SUNOS5_LWP
THREADSLIB=-lthread
#
# LDAP Ultrix standard cc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
PLATFORMCFLAGS= -Dultrix -YSYSTEM_FIVE
PLATFORMLDFLAGS= -YSYSTEM_FIVE
#
# LDAP Ultrix standard gcc Make-platform file
#
#
# add any platform-specific overrides below here
#
#
# -------------------------------------------------------------------------
# you will probably not need to edit anything below this point
# -------------------------------------------------------------------------
CC= gcc
PLATFORMCFLAGS= -Dultrix
#-----------------------------------------------------------------------------
# Copyright (c) 1994 Regents of the University of Michigan.
# All rights reserved.
#
# Redistribution and use in source and binary forms are permitted
# provided that this notice is preserved and that due credit is given
# to the University of Michigan at Ann Arbor. The name of the University
# may not be used to endorse or promote products derived from this
# software without specific prior written permission. This software
# is provided ``as is'' without express or implied warranty.
#
# LDAP build/platforms/vms Makefile (do nothing)
#
#-----------------------------------------------------------------------------
#
############################################################################
# #
# You should not have to edit anything in this file #
# #
############################################################################
LDAPSRC= ../../..
all: FORCE
links: FORCE
clean: FORCE
veryclean: FORCE
FORCE:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment