]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/heimdal/appl/ftp/ftp/Makefile.am
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / heimdal / appl / ftp / ftp / Makefile.am
1 # $Id: Makefile.am 20466 2007-04-20 08:29:05Z lha $
2
3 include $(top_srcdir)/Makefile.am.common
4
5 AM_CPPFLAGS += -I$(srcdir)/../common $(INCLUDE_readline) $(INCLUDE_krb4) $(INCLUDE_hcrypto)
6
7 bin_PROGRAMS = ftp
8
9 CHECK_LOCAL = 
10
11 if KRB4
12 krb4_sources = krb4.c
13 endif
14 if KRB5
15 krb5_sources = gssapi.c
16 endif
17
18 ftp_SOURCES = \
19         cmds.c \
20         cmdtab.c \
21         extern.h \
22         ftp.c \
23         ftp_locl.h \
24         ftp_var.h \
25         main.c \
26         pathnames.h \
27         ruserpass.c \
28         domacro.c \
29         globals.c \
30         security.c \
31         security.h \
32         kauth.c \
33         $(krb4_sources) \
34         $(krb5_sources)
35
36 EXTRA_ftp_SOURCES = krb4.c gssapi.c
37
38 man_MANS = ftp.1
39
40 LDADD = \
41         ../common/libcommon.a \
42         $(LIB_gssapi) \
43         $(LIB_krb5) \
44         $(LIB_krb4) \
45         $(LIB_hcrypto) \
46         $(LIB_roken) \
47         $(LIB_readline)
48
49 EXTRA_DIST = $(man_MANS)