1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-23 10:29:58 +01:00
gnupg/g10/Makefile.am

103 lines
2.2 KiB
Makefile
Raw Normal View History

1997-11-18 14:06:00 +00:00
## Process this file with automake to produce Makefile.in
1998-10-21 17:34:36 +00:00
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
1998-10-25 19:00:01 +00:00
EXTRA_DIST = OPTIONS pubring.asc options.skel
1998-02-18 18:52:59 +00:00
OMIT_DEPENDENCIES = zlib.h zconf.h
2000-12-21 11:51:57 +00:00
LDFLAGS = @LDFLAGS@ $(LIBGCRYPT_LIBS)
# we need to add libutil.la a second time because we have to resolve
# gpg_log_ in some libjnlib modules. - very ugly - should be removed soon.
needed_libs = ../util/libutil.a \
../jnlib/libjnlib.a ../util/libutil.a
1997-11-18 14:06:00 +00:00
1998-07-21 12:53:38 +00:00
#noinst_PROGRAMS = gpgd
2000-11-14 16:04:16 +00:00
#bin_PROGRAMS = gpg kbxutil
noinst_PROGRAMS = gpg kbxutil
1997-11-18 14:06:00 +00:00
1998-02-02 14:36:06 +00:00
common_source = \
1997-11-18 14:06:00 +00:00
build-packet.c \
1997-11-23 15:38:27 +00:00
compress.c \
basicdefs.h \
1997-11-18 14:06:00 +00:00
filter.h \
free-packet.c \
getkey.c \
keydb.h \
1998-09-11 05:47:32 +00:00
delkey.c \
1997-12-31 12:32:54 +00:00
pkclist.c \
skclist.c \
1997-12-12 12:03:58 +00:00
ringedit.c \
kbnode.c \
kbx.h \
kbxblob.c \
kbxio.c \
kbxfile.c \
1997-11-18 14:06:00 +00:00
main.h \
mainproc.c \
1997-11-21 14:53:57 +00:00
armor.c \
1997-11-18 14:06:00 +00:00
mdfilter.c \
textfilter.c \
1997-11-23 15:38:27 +00:00
cipher.c \
1998-04-07 18:16:10 +00:00
misc.c \
1997-11-18 14:06:00 +00:00
options.h \
1997-11-24 11:04:11 +00:00
openfile.c \
1997-11-24 22:24:04 +00:00
keyid.c \
1998-01-02 20:40:10 +00:00
trustdb.c \
1998-01-12 10:18:17 +00:00
trustdb.h \
tdbdump.c \
1998-07-09 13:37:17 +00:00
tdbio.c \
tdbio.h \
hkp.h \
hkp.c \
1997-11-18 14:06:00 +00:00
packet.h \
parse-packet.c \
passphrase.c \
pubkey-enc.c \
seckey-cert.c \
seskey.c \
1998-01-16 21:15:24 +00:00
import.c \
1998-01-26 22:09:01 +00:00
export.c \
1997-11-24 11:04:11 +00:00
comment.c \
1998-01-30 16:23:16 +00:00
status.c \
status.h \
1998-02-02 14:36:06 +00:00
sign.c \
plaintext.c \
encr-data.c \
encode.c \
1998-02-16 20:05:02 +00:00
revoke.c \
1998-03-09 21:44:06 +00:00
keylist.c \
1998-03-19 15:27:29 +00:00
sig-check.c \
signal.c \
helptext.c
1997-11-18 14:06:00 +00:00
gpg_SOURCES = gpg.c \
1998-02-02 14:36:06 +00:00
$(common_source) \
1998-03-09 21:44:06 +00:00
verify.c \
decrypt.c \
1998-07-29 19:35:05 +00:00
keyedit.c \
dearmor.c \
1998-02-02 14:36:06 +00:00
keygen.c
# fixme: remove unused sources from kbxutil
kbxutil_SOURCES = kbxutil.c \
$(common_source)
1998-07-21 12:53:38 +00:00
#gpgd_SOURCES = gpgd.c \
# ks-proto.h \
# ks-proto.c \
1998-09-28 19:25:31 +00:00
# ks-db.c \
# ks-db.h \
1998-07-21 12:53:38 +00:00
# $(common_source)
1998-04-02 19:27:10 +00:00
LDADD = $(needed_libs) @ZLIBS@ @INTLLIBS@
1997-11-19 13:12:23 +00:00
1998-02-18 18:52:59 +00:00
1998-02-02 14:36:06 +00:00
$(PROGRAMS): $(needed_libs)
1997-11-19 13:12:23 +00:00
1998-10-12 20:16:38 +00:00
1998-10-25 19:00:01 +00:00
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
$(INSTALL_DATA) $(srcdir)/options.skel \
$(DESTDIR)$(pkgdatadir)/options.skel
1998-10-25 19:00:01 +00:00