comparison makefile @ 18:712dd6dfb0eb libtomcrypt

makefile
author Matt Johnston <matt@ucc.asn.au>
date Tue, 15 Jun 2004 14:34:07 +0000
parents 09ab3354aa21
children c61e66431001
comparison
equal deleted inserted replaced
17:1a066933c5e1 18:712dd6dfb0eb
158 #This rule makes the libtomcrypt library. 158 #This rule makes the libtomcrypt library.
159 library: $(LIBNAME) 159 library: $(LIBNAME)
160 160
161 $(LIBNAME): $(OBJECTS) 161 $(LIBNAME): $(OBJECTS)
162 $(AR) $(ARFLAGS) $@ $(OBJECTS) 162 $(AR) $(ARFLAGS) $@ $(OBJECTS)
163 $(RANLIB) $@
163 164
164 #This rule makes the hash program included with libtomcrypt 165 #This rule makes the hash program included with libtomcrypt
165 hashsum: library $(HASHOBJECTS) 166 hashsum: library $(HASHOBJECTS)
166 $(CC) $(HASHOBJECTS) $(LIBNAME) -o $(HASH) $(WARN) 167 $(CC) $(HASHOBJECTS) $(LIBNAME) -o $(HASH) $(WARN)
167 168