]> andersk Git - moira.git/blob - util/gdss/lib/crypto/bignum/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / util / gdss / lib / crypto / bignum / 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$(srcdir)/h -DDIGITon32BIT
11
12 OBJS=KerN.o bnInit.o bnMult.o bnDivide.o bnCmp.o bzf.o bz.o
13
14 all: $(OBJS)
15
16 clean:
17         rm -f $(OBJS)
18
19 depend:
20
21 install:
22
23 KerN.o: $(srcdir)/c/KerN.c
24         $(CC) $(CFLAGS) -c $(srcdir)/c/KerN.c
25
26 # Level N
27 bnInit.o: $(srcdir)/c/bn/bnInit.c h/BigNum.h
28         $(CC) $(CFLAGS) -c $(srcdir)/c/bn/bnInit.c
29
30 bnMult.o: $(srcdir)/c/bn/bnMult.c h/BigNum.h
31         $(CC) $(CFLAGS) -c $(srcdir)/c/bn/bnMult.c
32
33 bnDivide.o: $(srcdir)/c/bn/bnDivide.c h/BigNum.h
34         $(CC) $(CFLAGS) -c $(srcdir)/c/bn/bnDivide.c
35
36 bnCmp.o: $(srcdir)/c/bn/bnCmp.c h/BigNum.h
37         $(CC) $(CFLAGS) -c $(srcdir)/c/bn/bnCmp.c
38
39 # Level Z
40 bz.o: $(srcdir)/c/bz.c h/BigZ.h h/BigNum.h
41         $(CC) $(CFLAGS) -c $(srcdir)/c/bz.c
42
43 # Some functions build with BigZ
44 bzf.o: $(srcdir)/c/bzf.c h/BigZ.h h/BigNum.h
45         $(CC) $(CFLAGS) -c $(srcdir)/c/bzf.c
This page took 0.046241 seconds and 5 git commands to generate.