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

version 1.1.1.5, 2013/10/14 07:56:34 version 1.1.1.6, 2014/06/15 16:12:54
Line 1 Line 1
 #  #
# Copyright (c) 2011-2013 Todd C. Miller <Todd.Miller@courtesan.com># Copyright (c) 2011-2014 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 54  PIE_LDFLAGS = @PIE_LDFLAGS@ Line 54  PIE_LDFLAGS = @PIE_LDFLAGS@
 SSP_CFLAGS = @SSP_CFLAGS@  SSP_CFLAGS = @SSP_CFLAGS@
 SSP_LDFLAGS = @SSP_LDFLAGS@  SSP_LDFLAGS = @SSP_LDFLAGS@
   
   # cppcheck options, usually set in the top-level Makefile
   CPPCHECK_OPTS = -q --force --enable=warning,performance,portability --suppress=constStatement --error-exitcode=1 --inline-suppr -U__cplusplus -UQUAD_MAX -UQUAD_MIN -UUQUAD_MAX -U_POSIX_HOST_NAME_MAX -U_POSIX_PATH_MAX
   
 # Where to install things...  # Where to install things...
 prefix = @prefix@  prefix = @prefix@
 exec_prefix = @exec_prefix@  exec_prefix = @exec_prefix@
Line 125  install-plugin: install-dirs sample_plugin.la Line 128  install-plugin: install-dirs sample_plugin.la
 uninstall:  uninstall:
         -rm -f $(DESTDIR)$(plugindir)/sample_plugin.so          -rm -f $(DESTDIR)$(plugindir)/sample_plugin.so
   
   cppcheck:
           cppcheck $(CPPCHECK_OPTS) -I$(incdir) -I$(top_builddir) -I$(top_srcdir) $(srcdir)/*.c
   
 check:  check:
   
 clean:  clean:
Line 143  realclean: distclean Line 149  realclean: distclean
 cleandir: realclean  cleandir: realclean
   
 # Autogenerated dependencies, do not modify  # Autogenerated dependencies, do not modify
sample_plugin.lo: $(srcdir)/sample_plugin.c $(top_builddir)/config.h \sample_plugin.lo: $(srcdir)/sample_plugin.c $(incdir)/missing.h \
                  $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \                  $(incdir)/sudo_plugin.h $(incdir)/sudo_util.h \
                  $(incdir)/sudo_plugin.h $(incdir)/missing.h                  $(top_builddir)/config.h $(top_builddir)/pathnames.h \
                   $(top_srcdir)/compat/stdbool.h
         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(PIE_CFLAGS) $(SSP_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.5  
changed lines
  Added in v.1.1.1.6


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