Removed libtoolfix
[silc.git] / lib / silcsim / Makefile.ad
1 #
2 #  Makefile.ad
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2000 - 2007 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; version 2 of the License.
11 #
12 #  This program is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #  GNU General Public License for more details.
16 #
17
18 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
19
20 if SILC_SIM
21 noinst_LTLIBRARIES = libsilcsim.la
22 else
23 noinst_LTLIBRARIES =
24 endif
25
26 libsilcsim_la_SOURCES = \
27         silcsim.c \
28         silcsimutil.c
29
30 #
31 # SILC Ciphers to be compiled as modules
32 #
33 SIM_CIPHER_OBJS = \
34         none.o \
35         blowfish.o \
36         aes.o \
37         rsa.o \
38         twofish.o
39
40 #
41 # SILC Hash Functions to be compiled as modules
42 #
43 SIM_HASH_OBJS = \
44         md5.o \
45         sha1.o \
46         sha256.o
47
48 if SILC_SIM
49 all: $(SIM_CIPHER_OBJS) $(SIM_HASH_OBJS)
50 endif
51
52 $(SIM_CIPHER_OBJS):
53         @if test '!' -f lib$*.la ; then \
54           $(LIBTOOL) --mode=link $(CCLD) -rpath $(silc_modulesdir) \
55                 ../silccrypt/$*.lo -o lib$*.la $(LTFLAGS); \
56           cd $(srcdir) && $(LN_S) -f $(srcdir)/.libs/lib$*.so \
57                 $(srcdir)/$*.sim.so; \
58         fi
59
60 $(SIM_HASH_OBJS):
61         @if test '!' -f lib$*.la ; then \
62           $(LIBTOOL) --mode=link $(CCLD) -rpath $(silc_modulesdir) \
63                 ../silccrypt/$*.lo -o lib$*.la $(LTFLAGS); \
64           cd $(srcdir) && $(LN_S) -f $(srcdir)/.libs/lib$*.so \
65                 $(srcdir)/$*.sim.so; \
66         fi
67
68 CLEANFILES = *.sim.so *.la
69
70 #ifdef SILC_DIST_TOOLKIT
71 include_HEADERS = silcsim.h silcsimutil.h
72 #endif SILC_DIST_TOOLKIT
73
74 EXTRA_DIST = *.h
75
76 #
77 # Installation
78 #
79 install-data-hook:
80         -mkdir -p $(modulesdir)
81         -$(INSTALL_DATA) $(top_srcdir)/lib/silcsim/*.so $(modulesdir)/
82
83 include $(top_srcdir)/Makefile.defines.in