From 928869dae75fb68e24743fb2e8aaf9b9daa23483 Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 13 Sep 2013 20:14:41 +0400 Subject: [PATCH 1/1] Add scrypt-arm.o target --- src/makefile.bsd | 3 +++ src/makefile.unix | 3 +++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/makefile.bsd b/src/makefile.bsd index b5f14ce..03ba309 100644 --- a/src/makefile.bsd +++ b/src/makefile.bsd @@ -185,6 +185,9 @@ obj/scrypt-x86.o: scrypt-x86.S 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 $@ $< + obj/%.o: %.cpp $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< @cp $(@:%.o=%.d) $(@:%.o=%.P); \ diff --git a/src/makefile.unix b/src/makefile.unix index ddf5d6a..4647d95 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -190,6 +190,9 @@ obj/scrypt-x86.o: scrypt-x86.S 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 $@ $< + obj/%.o: %.cpp $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< @cp $(@:%.o=%.d) $(@:%.o=%.P); \ -- 1.7.1