Annotation of embedaddon/sudo/include/Makefile.in, revision 1.1.1.1

1.1       misho       1: #
                      2: # Copyright (c) 2011 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: top_builddir = @top_builddir@
                     24: top_srcdir = @top_srcdir@
                     25: includedir = @includedir@
                     26: 
                     27: # Our install program supports extra flags...
                     28: INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
                     29: 
                     30: # Where to install things...
                     31: prefix = @prefix@
                     32: datarootdir = @datarootdir@
                     33: localstatedir = @localstatedir@
                     34: 
                     35: # User and group ids the installed files should be "owned" by
                     36: install_uid = 0
                     37: install_gid = 0
                     38: 
                     39: #### End of system configuration section. ####
                     40: 
                     41: SHELL = @SHELL@
                     42: 
                     43: all:
                     44: 
                     45: Makefile: $(srcdir)/Makefile.in
                     46:        (cd $(top_builddir) && ./config.status --file include/Makefile)
                     47: 
                     48: .SUFFIXES: .h
                     49: 
                     50: pre-install:
                     51: 
                     52: install: install-dirs install-includes
                     53: 
                     54: install-dirs:
                     55:        $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(includedir)
                     56: 
                     57: install-binaries:
                     58: 
                     59: install-doc:
                     60: 
                     61: install-includes: install-dirs
                     62:        $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0444 $(srcdir)/sudo_plugin.h $(DESTDIR)$(includedir)
                     63: 
                     64: install-plugin:
                     65: 
                     66: uninstall:
                     67:        -rm -f $(DESTDIR)$(includedir)/sudo_plugin.h
                     68: 
                     69: check:
                     70: 
                     71: clean:
                     72: 
                     73: mostlyclean: clean
                     74: 
                     75: distclean: clean
                     76:        -rm -rf Makefile
                     77: 
                     78: clobber: distclean
                     79: 
                     80: realclean: distclean
                     81: 
                     82: cleandir: distclean

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