updates.
[silc.git] / lib / silcsim / Makefile.am
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
5 #
6 #  Copyright (C) 2000 Pekka Riikonen
7 #
8 #  This program is free software; you can redistribute it and/or modify
9 #  it under the terms of the GNU General Public License as published by
10 #  the Free Software Foundation; either version 2 of the License, or
11 #  (at your option) any later version.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
20
21 if SILC_SIM
22 noinst_LIBRARIES = libsilcsim.a
23 else
24 noinst_LIBRARIES = 
25 endif
26
27 libsilcsim_a_SOURCES = \
28         silcsim.c \
29         silcsimutil.c
30
31 SIM_MODULES_DIR = modules
32
33 SUBDIRS = modules
34
35 #
36 # SILC Ciphers to be compiled as modules
37 #
38 SIM_CIPHER_OBJS = \
39         none.o \
40         blowfish.o \
41         rc5.o \
42         rc6.o \
43         mars.o \
44         aes.o \
45         rsa.o \
46         twofish.o \
47         cast.o
48
49 #
50 # SILC Hash Functions to be compiled as modules
51 #
52 SIM_HASH_OBJS = \
53         md5.o \
54         sha1.o
55
56 if SILC_SIM
57 all: $(SIM_CIPHER_OBJS) $(SIM_HASH_OBJS)
58 endif
59
60 $(SIM_CIPHER_OBJS): ../silccrypt/libsilccrypt.a
61         $(LTCOMPILE) -c $(srcdir)/../silccrypt/$*.c
62         $(LIBTOOL) --mode=link $(LINK) -rpath $(silc_modulesdir) -o lib$*.la $*.lo
63         cd $(srcdir)/$(SIM_MODULES_DIR) && $(LN_S) $(srcdir)/../.libs/lib$*.so $(srcdir)/$*.sim.so
64
65 $(SIM_HASH_OBJS): ../silccrypt/libsilccrypt.a
66         $(LTCOMPILE) -c $(srcdir)/../silccrypt/$*.c
67         $(LIBTOOL) --mode=link $(LINK) -rpath $(silc_modulesdir) -o lib$*.la $*.lo
68         cd $(srcdir)/$(SIM_MODULES_DIR) && $(LN_S) $(srcdir)/../.libs/lib$*.so $(srcdir)/$*.sim.so
69
70 CLEANFILES = $(SIM_MODULES_DIR)/*.sim.so *.la
71
72 if SILC_DIST_TOOLKIT
73 include_HEADERS = silcsim.h silcsimutil.h
74 endif
75
76 EXTRA_DIST = *.h
77
78 include $(top_srcdir)/Makefile.defines.in