1 |
werner |
46 |
# Makefile.am - makefile for WinPT |
2 |
|
|
# Copyright (C) 2005 g10 Code GmbH |
3 |
|
|
# |
4 |
|
|
# This file is free software; as a special exception the author gives |
5 |
|
|
# unlimited permission to copy and/or distribute it, with or without |
6 |
|
|
# modifications, as long as this notice is preserved. |
7 |
|
|
# |
8 |
|
|
# This program is distributed in the hope that it will be useful, but |
9 |
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the |
10 |
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
11 |
|
|
|
12 |
|
|
## Process this file with automake to produce Makefile.in |
13 |
|
|
|
14 |
|
|
noinst_LIBRARIES = libgnupg.a |
15 |
|
|
|
16 |
|
|
AM_CPPFLAGS = -DWIN32 -D_MBCS -D_LIB |
17 |
|
|
AM_CFLAGS = -fexceptions |
18 |
|
|
|
19 |
|
|
libgnupg_a_SOURCES = \ |
20 |
|
|
armor.c \ |
21 |
|
|
iobuf.c \ |
22 |
|
|
kbnode.c \ |
23 |
|
|
md.c \ |
24 |
|
|
md.h \ |
25 |
|
|
md5.c \ |
26 |
|
|
openpgp.h \ |
27 |
|
|
packet.h \ |
28 |
|
|
parse-packet.c \ |
29 |
|
|
rmd160.c \ |
30 |
|
|
rndw32.c \ |
31 |
|
|
sha1.c \ |
32 |
|
|
sha512.c |
33 |
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
|