Revision 24319,
568 bytes
checked in by broder, 15 years ago
(diff) |
New Moira snapshot from SVN.
|
Line | |
---|
1 | # $Id: Makefile.in 3956 2010-01-05 20:56:56Z zacheiss $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | |
---|
5 | CC=@CC@ |
---|
6 | CPPFLAGS=@CPPFLAGS@ |
---|
7 | CFLAGS=@CFLAGS@ |
---|
8 | DEFS=@DEFS@ |
---|
9 | ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS) |
---|
10 | RANLIB=@RANLIB@ |
---|
11 | |
---|
12 | srcdir=@srcdir@ |
---|
13 | VPATH=@srcdir@ |
---|
14 | SRCTOP=@top_srcdir@ |
---|
15 | BUILDTOP=.. |
---|
16 | |
---|
17 | OBJS= desc.o digit.o md2c.o md5c.o nn.o prime.o rsa.o r_encode.o \ |
---|
18 | r_dh.o r_enhanc.o r_keygen.o r_random.o r_stdlib.o |
---|
19 | |
---|
20 | .c.o: |
---|
21 | $(CC) -c $(ALL_CFLAGS) $< |
---|
22 | |
---|
23 | all: rsaref.a |
---|
24 | |
---|
25 | clean: |
---|
26 | rm -f $(OBJS) rsaref.a |
---|
27 | |
---|
28 | cleandir distclean: clean |
---|
29 | rm -f Makefile |
---|
30 | |
---|
31 | depend: |
---|
32 | |
---|
33 | install: all |
---|
34 | |
---|
35 | rsaref.a: $(OBJS) |
---|
36 | ar cru $@ $(OBJS) |
---|
37 | $(RANLIB) $@ |
---|
Note: See
TracBrowser
for help on using the repository browser.