2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00
sudo/Makefile.in

134 lines
3.7 KiB
Makefile
Raw Normal View History

#
2011-01-20 16:46:56 -05:00
# Copyright (c) 2010-2011 Todd C. Miller <Todd.Miller@courtesan.com>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
srcdir = @srcdir@
devdir = @devdir@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
# Installation paths for package building
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
sysconfdir = @sysconfdir@
libexecdir = @libexecdir@
includedir = @includedir@
datarootdir = @datarootdir@
2011-02-19 08:29:21 -05:00
localstatedir = @localstatedir@
docdir = @docdir@
mandir = @mandir@
timedir = @timedir@
# sudoers owner and mode for package building
sudoersdir = $(sysconfdir)
sudoers_uid = @SUDOERS_UID@
sudoers_gid = @SUDOERS_GID@
sudoers_mode = @SUDOERS_MODE@
SUBDIRS = compat common @ZLIB_SRC@ plugins/sudoers src include doc
2010-07-07 11:09:41 -04:00
SAMPLES = plugins/sample plugins/sample_group
VERSION = @PACKAGE_VERSION@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
LIBTOOL_DEPS = @LIBTOOL_DEPS@
2010-05-21 21:29:44 -04:00
SHELL = @SHELL@
all: config.status
for d in $(SUBDIRS) $(SAMPLES); do (cd $$d && $(MAKE) $@) || break; done
check: config.status
2010-07-07 11:09:41 -04:00
for d in $(SUBDIRS) $(SAMPLES); do (cd $$d && $(MAKE) $@) || break; done
2010-07-14 14:23:43 -04:00
install-dirs install-binaries install-includes install-plugin uninstall: config.status
for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@) || break; done
install install-doc: config.status ChangeLog
2010-05-04 15:13:40 -04:00
for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@) || break; done
autoconf:
autoconf -I m4
2010-02-27 12:37:49 -05:00
ChangeLog:
if test -d $(srcdir)/.hg && cd $(srcdir); then \
if hg log --style=changelog -b default > $@.tmp; then \
mv -f $@.tmp $@; \
else \
rm -f $@.tmp; \
fi; \
fi
2010-02-27 12:37:49 -05:00
config.status:
@if [ ! -s config.status ]; then \
echo "Please run configure first"; \
exit 1; \
fi
libtool: $(LIBTOOL_DEPS)
2010-05-21 18:41:18 -04:00
$(SHELL) ./config.status --recheck
Makefile: $(srcdir)/Makefile.in
./config.status --file Makefile
dist: ChangeLog $(srcdir)/MANIFEST
pax -w -x ustar -s '/^/$(PACKAGE_TARNAME)-$(VERSION)\//' \
-f ../$(PACKAGE_TARNAME)-$(VERSION).tar \
`sed 's/[ ].*//' $(srcdir)/MANIFEST`
gzip -9f ../$(PACKAGE_TARNAME)-$(VERSION).tar
ls -l ../$(PACKAGE_TARNAME)-$(VERSION).tar.gz
package: sudo.pp
DESTDIR=`cd $(top_builddir) && pwd`/destdir; rm -rf $$DESTDIR; \
$(MAKE) install DESTDIR=$$DESTDIR && \
$(SHELL) $(srcdir)/pp $(PPFLAGS) \
--destdir=$$DESTDIR \
$(srcdir)/sudo.pp \
bindir=$(bindir) \
sbindir=$(sbindir) \
libexecdir=$(libexecdir) \
includedir=$(includedir) \
timedir=$(timedir) \
mandir=$(mandir) \
docdir=$(docdir) \
sysconfdir=$(sysconfdir) \
sudoersdir=$(sudoersdir) \
sudoers_uid=$(sudoers_uid) \
sudoers_gid=$(sudoers_gid) \
sudoers_mode=$(sudoers_mode) \
version=$(VERSION) $(PPVARS)
clean: config.status
for d in $(SUBDIRS) $(SAMPLES); do (cd $$d && $(MAKE) $@); done
2010-02-20 09:53:05 -05:00
mostlyclean: clean
distclean: config.status
for d in $(SUBDIRS) $(SAMPLES); do (cd $$d && $(MAKE) $@); done
2010-04-23 22:57:03 -04:00
-rm -rf Makefile pathnames.h config.h config.status config.cache \
2010-11-19 14:06:53 -05:00
config.log libtool stamp-* autom4te.cache
2010-02-20 09:53:05 -05:00
cleandir: distclean
clobber: distclean
realclean: distclean
.PHONY: ChangeLog