mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 01:49:11 +00:00
127 lines
4.4 KiB
Makefile
127 lines
4.4 KiB
Makefile
#
|
|
# Copyright (c) 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.
|
|
#
|
|
# @configure_input@
|
|
#
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
srcdir = @srcdir@
|
|
devdir = @devdir@
|
|
top_builddir = @top_builddir@
|
|
top_srcdir = @top_srcdir@
|
|
incdir = $(top_srcdir)/include
|
|
|
|
# Compiler & tools to use
|
|
CC = @CC@
|
|
LIBTOOL = @LIBTOOL@
|
|
|
|
# C preprocessor flags
|
|
CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(top_srcdir) @CPPFLAGS@
|
|
|
|
# Usually -O and/or -g
|
|
CFLAGS = @CFLAGS@
|
|
|
|
# OS dependent defines
|
|
DEFS = @OSDEFS@
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
SHELL = @SHELL@
|
|
|
|
LTOBJS = alloc.lo atobool.lo fileops.lo fmt_string.lo lbuf.lo list.lo \
|
|
setgroups.lo sudo_debug.lo term.lo zero_bytes.lo @COMMON_OBJS@
|
|
|
|
all: libcommon.la
|
|
|
|
Makefile: $(srcdir)/Makefile.in
|
|
(cd $(top_builddir) && ./config.status --file common/Makefile)
|
|
|
|
.SUFFIXES: .c .h .lo
|
|
|
|
.c.lo:
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
|
|
|
|
libcommon.la: $(LTOBJS)
|
|
$(LIBTOOL) --mode=link $(CC) -o $@ $(LTOBJS) -no-install
|
|
|
|
pre-install:
|
|
|
|
install:
|
|
|
|
install-dirs:
|
|
|
|
install-binaries:
|
|
|
|
install-includes:
|
|
|
|
install-doc:
|
|
|
|
install-plugin:
|
|
|
|
uninstall:
|
|
|
|
check:
|
|
|
|
clean:
|
|
-$(LIBTOOL) --mode=clean rm -f *.lo *.o *.la *.a stamp-* core *.core core.*
|
|
|
|
mostlyclean: clean
|
|
|
|
distclean: clean
|
|
-rm -rf Makefile .libs
|
|
|
|
clobber: distclean
|
|
|
|
realclean: distclean
|
|
rm -f TAGS tags
|
|
|
|
cleandir: realclean
|
|
|
|
# Autogenerated dependencies, do not modify
|
|
aix.lo: $(srcdir)/aix.c $(top_builddir)/config.h $(incdir)/missing.h \
|
|
$(incdir)/alloc.h $(incdir)/error.h $(incdir)/gettext.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/aix.c
|
|
alloc.lo: $(srcdir)/alloc.c $(top_builddir)/config.h $(incdir)/missing.h \
|
|
$(incdir)/alloc.h $(incdir)/error.h $(incdir)/gettext.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/alloc.c
|
|
atobool.lo: $(srcdir)/atobool.c $(top_builddir)/config.h $(incdir)/missing.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/atobool.c
|
|
fileops.lo: $(srcdir)/fileops.c $(top_builddir)/config.h \
|
|
$(top_srcdir)/compat/timespec.h $(incdir)/missing.h \
|
|
$(incdir)/fileops.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/fileops.c
|
|
fmt_string.lo: $(srcdir)/fmt_string.c $(top_builddir)/config.h \
|
|
$(incdir)/missing.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/fmt_string.c
|
|
lbuf.lo: $(srcdir)/lbuf.c $(top_builddir)/config.h $(incdir)/missing.h \
|
|
$(incdir)/alloc.h $(incdir)/error.h $(incdir)/lbuf.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/lbuf.c
|
|
list.lo: $(srcdir)/list.c $(top_builddir)/config.h $(incdir)/missing.h \
|
|
$(incdir)/list.h $(incdir)/error.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/list.c
|
|
setgroups.lo: $(srcdir)/setgroups.c $(top_builddir)/config.h $(incdir)/missing.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/setgroups.c
|
|
sudo_debug.lo: $(srcdir)/sudo_debug.c $(top_builddir)/config.h \
|
|
$(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
|
|
$(incdir)/gettext.h $(incdir)/sudo_debug.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudo_debug.c
|
|
term.lo: $(srcdir)/term.c $(top_builddir)/config.h $(incdir)/missing.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/term.c
|
|
zero_bytes.lo: $(srcdir)/zero_bytes.c $(top_builddir)/config.h \
|
|
$(incdir)/missing.h
|
|
$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/zero_bytes.c
|