1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# $Id: Makefile.am,v 1.3 2006/07/23 20:19:44 astjean Exp $
# Makefile.am for courierpassd
man_MANS = courierpassd.8
sbin_PROGRAMS = courierpassd
EXTRA_DIST = $(man_MANS)
SUBDIRS = replace
# build the courierpassd program
INCLUDES = @courierpassd_CPPAUTH@
courierpassd_SOURCES = courierpassd.c xmalloc.c getopt_long.c courierpassd.h getopt.h logging.h
courierpassd_LDADD = @courierpassd_LDAUTH@ -lcourierauth $(top_builddir)/replace/libreplace.a
# installation instructions
install-exec-hook:
chown root $(DESTDIR)$(sbindir)/courierpassd
chmod 511 $(DESTDIR)$(sbindir)/courierpassd
|