diff options
Diffstat (limited to 'appl/push/Makefile.am')
-rw-r--r-- | appl/push/Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/appl/push/Makefile.am b/appl/push/Makefile.am new file mode 100644 index 0000000000000..eb67943371fc5 --- /dev/null +++ b/appl/push/Makefile.am @@ -0,0 +1,27 @@ +# $Id: Makefile.am 20466 2007-04-20 08:29:05Z lha $ + +include $(top_srcdir)/Makefile.am.common + +AM_CPPFLAGS += $(INCLUDE_krb4) $(INCLUDE_hesiod) + +bin_SCRIPTS = pfrom + +libexec_PROGRAMS = push + +push_SOURCES = push.c push_locl.h + +pfrom: pfrom.in + sed -e "s!%libexecdir%!$(libexecdir)!" $(srcdir)/pfrom.in > $@ + chmod +x $@ + +man_MANS = push.8 pfrom.1 + +CLEANFILES = pfrom + +EXTRA_DIST = pfrom.in $(man_MANS) + +LDADD = $(LIB_krb5) \ + $(LIB_krb4) \ + $(LIB_hcrypto) \ + $(LIB_roken) \ + $(LIB_hesiod) |