]> andersk Git - moira.git/blob - util/gdss/lib/crypto/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / util / gdss / lib / crypto / 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)/../../include -I$(srcdir)/bignum/h
11
12 OBJS =  hashes.o read_password.o crypto_util.o dumphex.o \
13         read_privkey.o read_pubkey.o write_pubkey.o KeyFromPQ.o
14
15 .c.o:
16         $(CC) -c $(CFLAGS) $<
17
18 all: $(OBJS)
19         @(cd algorithm; $(MAKE) $@) && (cd bignum; $(MAKE) $@)
20
21 clean:
22         rm -f $(OBJS)
23         @(cd algorithm; $(MAKE) $@) && (cd bignum; $(MAKE) $@)
24
25 depend:
26         @(cd algorithm; $(MAKE) $@) && (cd bignum; $(MAKE) $@)
27
28 install:
29         @(cd algorithm; $(MAKE) $@) && (cd bignum; $(MAKE) $@)
This page took 0.042378 seconds and 5 git commands to generate.