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

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@
1.1.1.2 ! misho      32: exec_prefix = @exec_prefix@
        !            33: bindir = @bindir@
        !            34: sbindir = @sbindir@
        !            35: sysconfdir = @sysconfdir@
        !            36: libexecdir = @libexecdir@
1.1       misho      37: datarootdir = @datarootdir@
                     38: localstatedir = @localstatedir@
                     39: 
                     40: # User and group ids the installed files should be "owned" by
                     41: install_uid = 0
                     42: install_gid = 0
                     43: 
                     44: #### End of system configuration section. ####
                     45: 
                     46: SHELL = @SHELL@
                     47: 
                     48: all:
                     49: 
                     50: Makefile: $(srcdir)/Makefile.in
                     51:        (cd $(top_builddir) && ./config.status --file include/Makefile)
                     52: 
                     53: .SUFFIXES: .h
                     54: 
                     55: pre-install:
                     56: 
1.1.1.2 ! misho      57: install: install-includes
1.1       misho      58: 
                     59: install-dirs:
                     60:        $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(includedir)
                     61: 
                     62: install-binaries:
                     63: 
                     64: install-doc:
                     65: 
                     66: install-includes: install-dirs
1.1.1.2 ! misho      67:        $(INSTALL) -O $(install_uid) -G $(install_gid) -m 0444 $(srcdir)/sudo_plugin.h $(DESTDIR)$(includedir)
1.1       misho      68: 
                     69: install-plugin:
                     70: 
                     71: uninstall:
                     72:        -rm -f $(DESTDIR)$(includedir)/sudo_plugin.h
                     73: 
                     74: check:
                     75: 
                     76: clean:
                     77: 
                     78: mostlyclean: clean
                     79: 
                     80: distclean: clean
                     81:        -rm -rf Makefile
                     82: 
                     83: clobber: distclean
                     84: 
                     85: realclean: distclean
                     86: 
                     87: cleandir: distclean

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