diff options
Diffstat (limited to 'g10/Makefile.am')
-rw-r--r-- | g10/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index a70a83734..c12ff46e2 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -1,4 +1,5 @@ -# Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +# Copyright (C) 1998, 1999, 2000, 2001, 2002, +# 2003 Free Software Foundation, Inc. # # This file is part of GnuPG. # @@ -22,9 +23,10 @@ INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl EXTRA_DIST = options.skel # it seems that we can't use this with automake 1.5 #OMIT_DEPENDENCIES = zlib.h zconf.h -LDFLAGS = @LDFLAGS@ libexecdir = @libexecdir@/@PACKAGE@ -CFLAGS = @CFLAGS@ -DGNUPG_LIBEXECDIR="\"$(libexecdir)\"" +if ! HAVE_DOSISH_SYSTEM +AM_CFLAGS = -DGNUPG_LIBEXECDIR="\"$(libexecdir)\"" +endif needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a @CAPLIBS@ #noinst_PROGRAMS = gpgd @@ -46,6 +48,7 @@ common_source = \ armor.c \ mdfilter.c \ textfilter.c \ + progress.c \ misc.c \ options.h \ openfile.c \ |