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

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

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