Annotation of embedaddon/sudo/plugins/group_file/Makefile.in, revision 1.1
1.1 ! misho 1: #
! 2: # Copyright (c) 2010-2013 Todd C. Miller <Todd.Miller@courtesan.com>
! 3: #
! 4: # Permission to use, copy, modify, and distribute this software for any
! 5: # purpose with or without fee is hereby granted, provided that the above
! 6: # copyright notice and this permission notice appear in all copies.
! 7: #
! 8: # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
! 9: # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
! 10: # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
! 11: # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
! 12: # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
! 13: # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
! 14: # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
! 15: # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
! 16: #
! 17: # @configure_input@
! 18: #
! 19:
! 20: #### Start of system configuration section. ####
! 21:
! 22: srcdir = @srcdir@
! 23: devdir = @devdir@
! 24: top_builddir = @top_builddir@
! 25: top_srcdir = @top_srcdir@
! 26: incdir = $(top_srcdir)/include
! 27: cross_compiling = @CROSS_COMPILING@
! 28:
! 29: # Compiler & tools to use
! 30: CC = @CC@
! 31: LIBTOOL = @LIBTOOL@ @LT_STATIC@
! 32:
! 33: # Our install program supports extra flags...
! 34: INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
! 35:
! 36: # Libraries
! 37: LT_LIBS = $(LIBOBJDIR)libreplace.la
! 38: LIBS = $(LT_LIBS)
! 39:
! 40: # C preprocessor flags
! 41: CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(top_srcdir) @CPPFLAGS@
! 42:
! 43: # Usually -O and/or -g
! 44: CFLAGS = @CFLAGS@
! 45:
! 46: # Flags to pass to the link stage
! 47: LDFLAGS = @LDFLAGS@
! 48: LT_LDFLAGS = @LT_LDFLAGS@ @LT_LDMAP@ @LT_LDOPT@ @LT_LDEXPORTS@
! 49:
! 50: # PIE flags
! 51: PIE_CFLAGS = @PIE_CFLAGS@
! 52: PIE_LDFLAGS = @PIE_LDFLAGS@
! 53:
! 54: # Stack smashing protection flags
! 55: SSP_CFLAGS = @SSP_CFLAGS@
! 56: SSP_LDFLAGS = @SSP_LDFLAGS@
! 57:
! 58: # Where to install things...
! 59: prefix = @prefix@
! 60: exec_prefix = @exec_prefix@
! 61: bindir = @bindir@
! 62: sbindir = @sbindir@
! 63: sysconfdir = @sysconfdir@
! 64: libexecdir = @libexecdir@
! 65: datarootdir = @datarootdir@
! 66: localstatedir = @localstatedir@
! 67: plugindir = @PLUGINDIR@
! 68:
! 69: # File extension, mode and map file to use for shared libraries/objects
! 70: soext = @SOEXT@
! 71: shlib_mode = @SHLIB_MODE@
! 72: shlib_exp = $(srcdir)/group_file.exp
! 73: shlib_map = group_file.map
! 74: shlib_opt = group_file.opt
! 75:
! 76: # OS dependent defines
! 77: DEFS = @OSDEFS@
! 78:
! 79: #### End of system configuration section. ####
! 80:
! 81: SHELL = @SHELL@
! 82:
! 83: OBJS = group_file.lo getgrent.lo
! 84:
! 85: LIBOBJDIR = $(top_builddir)/@ac_config_libobj_dir@/
! 86:
! 87: VERSION = @PACKAGE_VERSION@
! 88:
! 89: all: group_file.la
! 90:
! 91: Makefile: $(srcdir)/Makefile.in
! 92: (cd $(top_builddir) && ./config.status --file plugins/group_file/Makefile)
! 93:
! 94: .SUFFIXES: .o .c .h .lo
! 95:
! 96: .c.lo:
! 97: $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $<
! 98:
! 99: $(shlib_map): $(shlib_exp)
! 100: @awk 'BEGIN { print "{\n\tglobal:" } { print "\t\t"$$0";" } END { print "\tlocal:\n\t\t*;\n};" }' $(shlib_exp) > $@
! 101:
! 102: $(shlib_opt): $(shlib_exp)
! 103: @sed 's/^/+e /' $(shlib_exp) > $@
! 104:
! 105: group_file.la: $(OBJS) $(LT_LIBS) @LT_LDDEP@
! 106: $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LT_LDFLAGS) -o $@ $(OBJS) $(LIBS) -module -avoid-version -rpath $(plugindir)
! 107:
! 108: pre-install:
! 109:
! 110: install: install-plugin
! 111:
! 112: install-dirs:
! 113: $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(plugindir)
! 114:
! 115: install-binaries:
! 116:
! 117: install-includes:
! 118:
! 119: install-doc:
! 120:
! 121: install-plugin: install-dirs group_file.la
! 122: $(INSTALL) -b~ -m $(shlib_mode) .libs/group_file$(soext) $(DESTDIR)$(plugindir)/group_file.so
! 123:
! 124: uninstall:
! 125: -rm -f $(DESTDIR)$(plugindir)/group_file.so
! 126:
! 127: check:
! 128:
! 129: clean:
! 130: -$(LIBTOOL) --mode=clean rm -f *.lo *.o *.la *.a stamp-* core *.core core.*
! 131:
! 132: mostlyclean: clean
! 133:
! 134: distclean: clean
! 135: -rm -rf Makefile .libs
! 136:
! 137: clobber: distclean
! 138:
! 139: realclean: distclean
! 140: rm -f TAGS tags
! 141:
! 142: cleandir: realclean
! 143:
! 144: # Autogenerated dependencies, do not modify
! 145: getgrent.lo: $(srcdir)/getgrent.c $(top_builddir)/config.h $(incdir)/missing.h
! 146: $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $(srcdir)/getgrent.c
! 147: group_file.lo: $(srcdir)/group_file.c $(top_builddir)/config.h \
! 148: $(top_srcdir)/compat/stdbool.h $(incdir)/sudo_plugin.h \
! 149: $(incdir)/missing.h
! 150: $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $(srcdir)/group_file.c
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>