1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-15 00:29:49 +02:00
gnupg/g10/Makefile.am

82 lines
1.6 KiB
Makefile
Raw Normal View History

1997-11-18 15:06:00 +01:00
## Process this file with automake to produce Makefile.in
1998-04-02 12:30:03 +02:00
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl -I../intl
1998-02-17 21:48:52 +01:00
EXTRA_DIST = OPTIONS pubring.asc
1998-02-18 19:52:59 +01:00
OMIT_DEPENDENCIES = zlib.h zconf.h
1998-06-25 12:19:08 +02:00
LDFLAGS = @LDFLAGS@ @DYNLINK_LDFLAGS@
1998-02-02 15:36:06 +01:00
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
1997-11-18 15:06:00 +01:00
1998-05-29 13:53:54 +02:00
noinst_PROGRAMS = gpgd
bin_PROGRAMS = gpg gpgm
1997-11-18 15:06:00 +01:00
1998-02-02 15:36:06 +01:00
common_source = \
1997-11-18 15:06:00 +01:00
build-packet.c \
1997-11-23 16:38:27 +01:00
compress.c \
1997-11-18 15:06:00 +01:00
filter.h \
free-packet.c \
getkey.c \
keydb.h \
1997-12-31 13:32:54 +01:00
pkclist.c \
skclist.c \
1997-12-12 13:03:58 +01:00
ringedit.c \
kbnode.c \
1997-11-18 15:06:00 +01:00
main.h \
mainproc.c \
1997-11-21 15:53:57 +01:00
armor.c \
1997-11-18 15:06:00 +01:00
mdfilter.c \
textfilter.c \
1997-11-23 16:38:27 +01:00
cipher.c \
1998-04-07 20:16:10 +02:00
misc.c \
1997-11-18 15:06:00 +01:00
options.h \
1997-11-24 12:04:11 +01:00
openfile.c \
1997-11-24 23:24:04 +01:00
keyid.c \
1998-01-02 21:40:10 +01:00
trustdb.c \
1998-01-12 11:18:17 +01:00
trustdb.h \
1997-11-18 15:06:00 +01:00
packet.h \
parse-packet.c \
passphrase.c \
pubkey-enc.c \
seckey-cert.c \
seskey.c \
1998-01-16 22:15:24 +01:00
import.c \
1998-01-26 23:09:01 +01:00
export.c \
1997-11-24 12:04:11 +01:00
comment.c \
1998-01-30 17:23:16 +01:00
status.c \
status.h \
1998-02-02 15:36:06 +01:00
sign.c \
1998-04-09 13:19:09 +02:00
keyedit.c \
1998-02-02 15:36:06 +01:00
plaintext.c \
encr-data.c \
encode.c \
1998-02-16 21:05:02 +01:00
revoke.c \
1998-03-09 22:44:06 +01:00
keylist.c \
1998-03-19 16:27:29 +01:00
sig-check.c \
signal.c
1997-11-18 15:06:00 +01:00
1998-02-24 19:50:46 +01:00
gpg_SOURCES = g10.c \
1998-02-02 15:36:06 +01:00
$(common_source) \
1998-03-09 22:44:06 +01:00
verify.c \
decrypt.c \
1998-02-02 15:36:06 +01:00
keygen.c
1997-11-18 15:06:00 +01:00
1998-04-07 20:16:10 +02:00
gpgm_SOURCES = dearmor.c \
1998-02-02 15:36:06 +01:00
$(common_source)
1997-11-18 15:06:00 +01:00
1998-04-02 21:27:10 +02:00
gpgd_SOURCES = gpgd.c \
1998-04-20 16:47:21 +02:00
ks-proto.h \
ks-proto.c \
1998-04-02 21:27:10 +02:00
$(common_source)
1998-02-12 15:39:08 +01:00
LDADD = @INTLLIBS@ $(needed_libs) @ZLIBS@
1997-11-19 14:12:23 +01:00
1998-04-07 20:16:10 +02:00
gpgm_LDADD = g10maint.o $(LDADD)
g10maint.o: g10.c
$(COMPILE) -DIS_G10MAINT -o g10maint.o -c g10.c
1998-02-18 19:52:59 +01:00
1998-02-02 15:36:06 +01:00
$(PROGRAMS): $(needed_libs)
1997-11-19 14:12:23 +01:00