Remove unnecessary ARM references
authorMASM fan <masmfan@gmail.com>
Tue, 25 Nov 2014 16:30:05 +0000 (20:30 +0400)
committerMASM fan <masmfan@gmail.com>
Tue, 25 Nov 2014 16:30:05 +0000 (20:30 +0400)
src/makefile.linux-mingw
src/makefile.mingw
src/makefile.osx

index 8bed0ff..570bd3b 100644 (file)
@@ -111,7 +111,7 @@ OBJS += obj/txdb-bdb.o
 endif
 
 ifeq (${USE_ASM}, 1)
-OBJS += obj/scrypt-arm.o obj/scrypt-x86.o obj/scrypt-x86_64.o
+OBJS += obj/scrypt-x86.o obj/scrypt-x86_64.o
 
 obj/scrypt-x86.o: scrypt-x86.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
index 9a40913..74006f7 100644 (file)
@@ -102,7 +102,7 @@ OBJS += obj/txdb-bdb.o
 endif
 
 ifdef USE_ASM
-OBJS += obj/scrypt-arm.o obj/scrypt-x86.o obj/scrypt-x86_64.o
+OBJS += obj/scrypt-x86.o obj/scrypt-x86_64.o
 
 obj/scrypt-x86.o: scrypt-x86.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
index 3b6353d..1570fbd 100644 (file)
@@ -129,16 +129,13 @@ OBJS += obj/txdb-bdb.o
 endif
 
 ifeq (${USE_ASM}, 1)
-OBJS += obj/scrypt-arm.o obj/scrypt-x86.o obj/scrypt-x86_64.o
+OBJS += obj/scrypt-x86.o obj/scrypt-x86_64.o
 
 obj/scrypt-x86.o: scrypt-x86.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
 
 obj/scrypt-x86_64.o: scrypt-x86_64.S
        $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
-
-obj/scrypt-arm.o: scrypt-arm.S
-       $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
 endif
 ifneq (${USE_ASM}, 1)
 OBJS += obj/scrypt-generic.o