summaryrefslogtreecommitdiff
path: root/code/ecp/crypto/sha
diff options
context:
space:
mode:
Diffstat (limited to 'code/ecp/crypto/sha')
-rw-r--r--code/ecp/crypto/sha/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/code/ecp/crypto/sha/Makefile b/code/ecp/crypto/sha/Makefile
index 4dc3f39..b775c83 100644
--- a/code/ecp/crypto/sha/Makefile
+++ b/code/ecp/crypto/sha/Makefile
@@ -4,14 +4,11 @@ CFLAGS=$(CFLAGS_PL) $(PIC) -I../include -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_D
obj = sha1dgst.o sha1_one.o sha256.o sha512.o
-all: libsha.a
+all: $(obj)
dep: all
%.o: %.c
$(CC) $(CFLAGS) -c $<
-libsha.a: $(obj)
- $(AR) rcs $@ $(obj)
-
clean:
rm -f *.o *.a