Mercurial > dropbear
comparison makefile @ 8:059ec00f32a1 libtomcrypt
Missing ranlib in makefile for library
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 02 Jun 2004 08:31:25 +0000 |
parents | d7da3b1e1540 |
children | 09ab3354aa21 |
comparison
equal
deleted
inserted
replaced
0:d7da3b1e1540 | 8:059ec00f32a1 |
---|---|
156 #This rule makes the libtomcrypt library. | 156 #This rule makes the libtomcrypt library. |
157 library: $(LIBNAME) | 157 library: $(LIBNAME) |
158 | 158 |
159 $(LIBNAME): $(OBJECTS) | 159 $(LIBNAME): $(OBJECTS) |
160 $(AR) $(ARFLAGS) $@ $(OBJECTS) | 160 $(AR) $(ARFLAGS) $@ $(OBJECTS) |
161 $(RANLIB) $(LIBNAME) | |
161 | 162 |
162 #This rule makes the test program included with libtomcrypt | 163 #This rule makes the test program included with libtomcrypt |
163 test: library $(TESTOBJECTS) | 164 test: library $(TESTOBJECTS) |
164 $(CC) $(TESTOBJECTS) $(LIBNAME) -o $(TEST) $(WARN) | 165 $(CC) $(TESTOBJECTS) $(LIBNAME) -o $(TEST) $(WARN) |
165 | 166 |