Diff for /embedaddon/sudo/plugins/sample/Makefile.in between versions 1.1.1.2 and 1.1.1.5

version 1.1.1.2, 2012/05/29 12:26:49 version 1.1.1.5, 2013/10/14 07:56:34
Line 1 Line 1
 #  #
# Copyright (c) 2011 Todd C. Miller <Todd.Miller@courtesan.com># Copyright (c) 2011-2013 Todd C. Miller <Todd.Miller@courtesan.com>
 #  #
 # Permission to use, copy, modify, and distribute this software for any  # Permission to use, copy, modify, and distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above  # purpose with or without fee is hereby granted, provided that the above
Line 24  devdir = @devdir@ Line 24  devdir = @devdir@
 top_builddir = @top_builddir@  top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@  top_srcdir = @top_srcdir@
 incdir = $(top_srcdir)/include  incdir = $(top_srcdir)/include
   cross_compiling = @CROSS_COMPILING@
   
 # Compiler & tools to use  # Compiler & tools to use
 CC = @CC@  CC = @CC@
Line 43  CFLAGS = @CFLAGS@ Line 44  CFLAGS = @CFLAGS@
   
 # Flags to pass to the link stage  # Flags to pass to the link stage
 LDFLAGS = @LDFLAGS@  LDFLAGS = @LDFLAGS@
LTLDFLAGS = @LTLDFLAGS@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...  # Where to install things...
 prefix = @prefix@  prefix = @prefix@
 exec_prefix = @exec_prefix@  exec_prefix = @exec_prefix@
Line 55  libexecdir = @libexecdir@ Line 64  libexecdir = @libexecdir@
 datarootdir = @datarootdir@  datarootdir = @datarootdir@
 localstatedir = @localstatedir@  localstatedir = @localstatedir@
 plugindir = @PLUGINDIR@  plugindir = @PLUGINDIR@
   
   # File extension, mode and map file to use for shared libraries/objects
 soext = @SOEXT@  soext = @SOEXT@
   shlib_mode = @SHLIB_MODE@
   shlib_exp = $(srcdir)/sample_plugin.exp
   shlib_map = sample_plugin.map
   shlib_opt = sample_plugin.opt
   
 # OS dependent defines  # OS dependent defines
 DEFS = @OSDEFS@  DEFS = @OSDEFS@
Line 78  Makefile: $(srcdir)/Makefile.in Line 93  Makefile: $(srcdir)/Makefile.in
 .SUFFIXES: .o .c .h .lo  .SUFFIXES: .o .c .h .lo
   
 .c.lo:  .c.lo:
        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $<        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $<
   
sample_plugin.la: $(OBJS)$(shlib_map): $(shlib_exp)
        $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LTLDFLAGS) -o $@ $(OBJS) $(LIBS) -module -export-symbols $(srcdir)/sample_plugin.sym -avoid-version -rpath $(plugindir)        @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) > $@
   
   sample_plugin.la: $(OBJS) @LT_LDDEP@
           $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LT_LDFLAGS) -o $@ $(OBJS) $(LIBS) -module -avoid-version -rpath $(plugindir)
   
 pre-install:  pre-install:
   
 install: install-plugin  install: install-plugin
Line 97  install-includes: Line 118  install-includes:
 install-doc:  install-doc:
   
 install-plugin: install-dirs sample_plugin.la  install-plugin: install-dirs sample_plugin.la
        $(INSTALL) -b~ -m 0755 .libs/sample_plugin$(soext) $(DESTDIR)$(plugindir)        if [ X"$(soext)" != X"" ]; then \
             $(INSTALL) -b~ -m $(shlib_mode) .libs/sample_plugin$(soext) $(DESTDIR)$(plugindir)/sample_plugin.so; \
         fi
   
 uninstall:  uninstall:
        -rm -f $(DESTDIR)$(plugindir)/sample_plugin$(soext)        -rm -f $(DESTDIR)$(plugindir)/sample_plugin.so
   
 check:  check:
   
Line 123  cleandir: realclean Line 146  cleandir: realclean
 sample_plugin.lo: $(srcdir)/sample_plugin.c $(top_builddir)/config.h \  sample_plugin.lo: $(srcdir)/sample_plugin.c $(top_builddir)/config.h \
                   $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \                    $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
                   $(incdir)/sudo_plugin.h $(incdir)/missing.h                    $(incdir)/sudo_plugin.h $(incdir)/missing.h
        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sample_plugin.c        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_CFLAGS) $(DEFS) $(srcdir)/sample_plugin.c

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>