Updated to recognize arm64-v8a as an architecture
parent
695bb3d5df
commit
bdebe53dd6
|
|
@ -113,14 +113,17 @@ distclean: clean
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install:
|
||||||
$(MKDIR) -p $(PREFIX)/include/cryptopp $(PREFIX)/lib $(PREFIX)/bin
|
$(MKDIR) -p $(PREFIX)/include/cryptopp $(PREFIX)/lib
|
||||||
-$(CP) *.h $(PREFIX)/include/cryptopp
|
-$(CP) *.h $(PREFIX)/include/cryptopp
|
||||||
-$(CHMOD) 755 $(PREFIX)/include/cryptopp
|
-$(CHMOD) 755 $(PREFIX)/include/cryptopp
|
||||||
-$(CHMOD) 644 $(PREFIX)/include/cryptopp/*.h
|
-$(CHMOD) 644 $(PREFIX)/include/cryptopp/*.h
|
||||||
-$(CP) libcryptopp.a $(PREFIX)/lib
|
-$(CP) libcryptopp.a $(PREFIX)/lib
|
||||||
-$(CHMOD) 644 $(PREFIX)/lib/libcryptopp.a
|
-$(CHMOD) 644 $(PREFIX)/lib/libcryptopp.a
|
||||||
|
ifeq ($(wildcard cryptest.exe),cryptest.exe)
|
||||||
|
$(MKDIR) -p $(PREFIX)/bin
|
||||||
-$(CP) cryptest.exe $(PREFIX)/bin
|
-$(CP) cryptest.exe $(PREFIX)/bin
|
||||||
-$(CHMOD) 755 $(PREFIX)/bin/cryptest.exe
|
-$(CHMOD) 755 $(PREFIX)/bin/cryptest.exe
|
||||||
|
endif
|
||||||
ifneq ($(IS_IOS),0)
|
ifneq ($(IS_IOS),0)
|
||||||
-$(CP) libcryptopp.dylib $(PREFIX)/lib
|
-$(CP) libcryptopp.dylib $(PREFIX)/lib
|
||||||
-$(CHMOD) 755 $(PREFIX)/lib/libcryptopp.dylib
|
-$(CHMOD) 755 $(PREFIX)/lib/libcryptopp.dylib
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue