28 lines
508 B
Makefile
28 lines
508 B
Makefile
# $Id: Makefile.am,v 1.1.1.1 2000/06/16 18:46:26 thorpej Exp $
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
INCLUDES += $(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
|
|
|
|
CLEANFILES = pfrom
|
|
|
|
EXTRA_DIST = pfrom.in $(man_MANS)
|
|
|
|
LDADD = $(LIB_krb5) \
|
|
$(LIB_krb4) \
|
|
$(top_builddir)/lib/des/libdes.la \
|
|
$(LIB_roken) \
|
|
$(LIB_hesiod)
|