mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 01:49:11 +00:00
statically compiling in the sudoers plugin but still allow other plugins to be loaded. The new --enable-static-sudoers configure option will cause the sudoers plugin to be compiled statically into the sudo binary. This does not prevent other plugins from being loaded as per sudo.conf.
151 lines
3.9 KiB
Makefile
151 lines
3.9 KiB
Makefile
#
|
|
# Copyright (c) 2011-2013 Todd C. Miller <Todd.Miller@courtesan.com>
|
|
#
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
# @configure_input@
|
|
#
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
srcdir = @srcdir@
|
|
devdir = @devdir@
|
|
top_builddir = @top_builddir@
|
|
top_srcdir = @top_srcdir@
|
|
incdir = $(top_srcdir)/include
|
|
cross_compiling = @CROSS_COMPILING@
|
|
|
|
# Compiler & tools to use
|
|
CC = @CC@
|
|
LIBTOOL = @LIBTOOL@ @LT_STATIC@
|
|
|
|
# Our install program supports extra flags...
|
|
INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
|
|
|
|
# Libraries
|
|
LT_LIBS = $(LIBOBJDIR)libreplace.la
|
|
LIBS = $(LT_LIBS)
|
|
|
|
# C preprocessor flags
|
|
CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(top_srcdir) @CPPFLAGS@
|
|
|
|
# Usually -O and/or -g
|
|
CFLAGS = @CFLAGS@
|
|
|
|
# Flags to pass to the link stage
|
|
LDFLAGS = @LDFLAGS@
|
|
LT_LDFLAGS = @LT_LDFLAGS@ @LT_LDMAP@ @LT_LDOPT@ @LT_LDEXPORTS@
|
|
|
|
# PIE flags
|
|
PIE_CFLAGS = @PIE_CFLAGS@
|
|
PIE_LDFLAGS = @PIE_LDFLAGS@
|
|
|
|
# Stack smashing protection flags
|
|
SSP_CFLAGS = @SSP_CFLAGS@
|
|
SSP_LDFLAGS = @SSP_LDFLAGS@
|
|
|
|
# Where to install things...
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
sbindir = @sbindir@
|
|
sysconfdir = @sysconfdir@
|
|
libexecdir = @libexecdir@
|
|
datarootdir = @datarootdir@
|
|
localstatedir = @localstatedir@
|
|
plugindir = @PLUGINDIR@
|
|
|
|
# File extension, mode and map file to use for shared libraries/objects
|
|
soext = @SOEXT@
|
|
shlib_mode = @SHLIB_MODE@
|
|
shlib_exp = $(srcdir)/system_group.exp
|
|
shlib_map = system_group.map
|
|
shlib_opt = system_group.opt
|
|
|
|
# OS dependent defines
|
|
DEFS = @OSDEFS@
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
SHELL = @SHELL@
|
|
|
|
OBJS = system_group.lo
|
|
|
|
LIBOBJDIR = $(top_builddir)/@ac_config_libobj_dir@/
|
|
|
|
VERSION = @PACKAGE_VERSION@
|
|
|
|
all: system_group.la
|
|
|
|
Makefile: $(srcdir)/Makefile.in
|
|
(cd $(top_builddir) && ./config.status --file plugins/system_group/Makefile)
|
|
|
|
.SUFFIXES: .o .c .h .lo
|
|
|
|
.c.lo:
|
|
$(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $<
|
|
|
|
$(shlib_map): $(shlib_exp)
|
|
@awk 'BEGIN { print "{\n\tglobal:" } { print "\t\t"$$0";" } END { print "\tlocal:\n\t\t*;\n};" }' $(shlib_exp) > $@
|
|
|
|
$(shlib_opt): $(shlib_exp)
|
|
@sed 's/^/+e /' $(shlib_exp) > $@
|
|
|
|
system_group.la: $(OBJS) $(LT_LIBS) @LT_LDDEP@
|
|
$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LT_LDFLAGS) -o $@ $(OBJS) $(LIBS) -module -avoid-version -rpath $(plugindir)
|
|
|
|
pre-install:
|
|
|
|
install: install-plugin
|
|
|
|
install-dirs:
|
|
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(plugindir)
|
|
|
|
install-binaries:
|
|
|
|
install-includes:
|
|
|
|
install-doc:
|
|
|
|
install-plugin: install-dirs system_group.la
|
|
if [ X"$(soext)" != X"" ]; then \
|
|
$(INSTALL) -b~ -m $(shlib_mode) .libs/system_group$(soext) $(DESTDIR)$(plugindir)/system_group.so; \
|
|
fi
|
|
|
|
uninstall:
|
|
-rm -f $(DESTDIR)$(plugindir)/system_group.so
|
|
|
|
check:
|
|
|
|
clean:
|
|
-$(LIBTOOL) --mode=clean rm -f *.lo *.o *.la *.a stamp-* core *.core core.*
|
|
|
|
mostlyclean: clean
|
|
|
|
distclean: clean
|
|
-rm -rf Makefile .libs
|
|
|
|
clobber: distclean
|
|
|
|
realclean: distclean
|
|
rm -f TAGS tags
|
|
|
|
cleandir: realclean
|
|
|
|
# Autogenerated dependencies, do not modify
|
|
system_group.lo: $(srcdir)/system_group.c $(incdir)/missing.h \
|
|
$(incdir)/sudo_dso.h $(incdir)/sudo_plugin.h \
|
|
$(top_builddir)/config.h $(top_srcdir)/compat/stdbool.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $(srcdir)/system_group.c
|