remove gcc34
[dragonfly.git] / crypto / heimdal-0.6.3 / appl / ftp / ftp / Makefile.am
1 # $Id: Makefile.am,v 1.15 2001/08/28 08:31:21 assar Exp $
2
3 include $(top_srcdir)/Makefile.am.common
4
5 INCLUDES += -I$(srcdir)/../common $(INCLUDE_readline) $(INCLUDE_krb4) $(INCLUDE_des)
6
7 bin_PROGRAMS = ftp
8
9 CHECK_LOCAL = 
10
11 if KRB4
12 krb4_sources = krb4.c kauth.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         $(krb4_sources) \
33         $(krb5_sources)
34
35 EXTRA_ftp_SOURCES = krb4.c kauth.c gssapi.c
36
37 man_MANS = ftp.1
38
39 LDADD = \
40         ../common/libcommon.a \
41         $(LIB_gssapi) \
42         $(LIB_krb5) \
43         $(LIB_krb4) \
44         $(LIB_des) \
45         $(LIB_roken) \
46         $(LIB_readline)