]> andersk Git - moira.git/blob - util/gdss/lib/crypto/algorithm/Makefile.in
Remove incorrect krb_get_lrealm() prototype.
[moira.git] / util / gdss / lib / crypto / algorithm / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4 @SET_MAKE@
5
6 srcdir=@srcdir@
7 VPATH=@srcdir@
8
9 CC=@CC@
10 CFLAGS=@CFLAGS@ -I. -I$(srcdir)/../../../include -I$(srcdir)/../bignum/h
11 LDFLAGS=@LDFLAGS@
12
13 OBJS=random.o random_BigNum.o bigrsacode.o bigkeygen.o bigsignverify.o
14
15 .c.o:
16         $(CC) -c $(CFLAGS) $<
17
18 all: depend $(OBJS)
19
20 clean:
21         rm -f $(OBJS) gentables gentables.o tables.h endian.h
22
23 depend: tables.h
24
25 install:
26
27 endian.h tables.h: gentables
28         ./gentables
29
30 gentables: gentables.o
31         $(CC) $(LDFLAGS) -o $@ gentables.o
This page took 0.041512 seconds and 5 git commands to generate.