summaryrefslogtreecommitdiff
path: root/crypto/rc4/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/rc4/Makefile')
-rw-r--r--crypto/rc4/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rc4/Makefile b/crypto/rc4/Makefile
index 7857c95fbfcd..187ed5c6684a 100644
--- a/crypto/rc4/Makefile
+++ b/crypto/rc4/Makefile
@@ -10,7 +10,7 @@ INCLUDES=
CFLAG=-g
AR= ar r
-RC4_ENC=rc4_enc.o
+RC4_ENC=rc4_enc.o rc4_skey.o
CFLAGS= $(INCLUDES) $(CFLAG)
ASFLAGS= $(INCLUDES) $(ASFLAG)
@@ -22,7 +22,7 @@ APPS=
LIB=$(TOP)/libcrypto.a
LIBSRC=rc4_skey.c rc4_enc.c
-LIBOBJ=rc4_skey.o $(RC4_ENC)
+LIBOBJ=$(RC4_ENC)
SRC= $(LIBSRC)