Diff for /embedaddon/sudo/include/Makefile.in between versions 1.1.1.1 and 1.1.1.5

version 1.1.1.1, 2012/02/21 16:23:02 version 1.1.1.5, 2014/06/15 16:12:54
Line 1 Line 1
 #  #
# Copyright (c) 2011 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 23  srcdir = @srcdir@ Line 23  srcdir = @srcdir@
 top_builddir = @top_builddir@  top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@  top_srcdir = @top_srcdir@
 includedir = @includedir@  includedir = @includedir@
   cross_compiling = @CROSS_COMPILING@
   
 # Our install program supports extra flags...  # Our install program supports extra flags...
 INSTALL = $(SHELL) $(top_srcdir)/install-sh -c  INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
   
 # Where to install things...  # Where to install things...
 prefix = @prefix@  prefix = @prefix@
   exec_prefix = @exec_prefix@
   bindir = @bindir@
   sbindir = @sbindir@
   sysconfdir = @sysconfdir@
   libexecdir = @libexecdir@
 datarootdir = @datarootdir@  datarootdir = @datarootdir@
 localstatedir = @localstatedir@  localstatedir = @localstatedir@
   
Line 49  Makefile: $(srcdir)/Makefile.in Line 55  Makefile: $(srcdir)/Makefile.in
   
 pre-install:  pre-install:
   
install: install-dirs install-includesinstall: install-includes
   
 install-dirs:  install-dirs:
         $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(includedir)          $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(includedir)
Line 59  install-binaries: Line 65  install-binaries:
 install-doc:  install-doc:
   
 install-includes: install-dirs  install-includes: install-dirs
        $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0444 $(srcdir)/sudo_plugin.h $(DESTDIR)$(includedir)        $(INSTALL) -O $(install_uid) -G $(install_gid) -m 0644 $(srcdir)/sudo_plugin.h $(DESTDIR)$(includedir)
   
 install-plugin:  install-plugin:
   
 uninstall:  uninstall:
         -rm -f $(DESTDIR)$(includedir)/sudo_plugin.h          -rm -f $(DESTDIR)$(includedir)/sudo_plugin.h
   
   cppcheck:
   
 check:  check:
   

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


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