mirror of
https://github.com/psforever/PSCrypto.git
synced 2026-04-28 15:45:24 +00:00
Improve makefile, version code, and document
This commit is contained in:
parent
0d7703cf99
commit
b068e6a7bd
6 changed files with 306 additions and 68 deletions
10
Makefile
10
Makefile
|
|
@ -1,6 +1,12 @@
|
|||
include Makefile.inc
|
||||
|
||||
$(info === Build configuration ===)
|
||||
$(info Archtecture: $(ARCH))
|
||||
$(info Operating system: $(OS))
|
||||
|
||||
CRYPTOPP_DIR=external/psf-cryptopp
|
||||
CRYPTOPP_LIB=$(CRYPTOPP_DIR)/libcryptopp.a
|
||||
PSCRYPTO=pscrypto/pscrypto.dll
|
||||
PSCRYPTO=pscrypto/$(call lib-name,pscrypto)
|
||||
|
||||
all : $(CRYPTOPP_LIB) $(PSCRYPTO)
|
||||
|
||||
|
|
@ -13,3 +19,5 @@ $(PSCRYPTO) : $(CRYPTOPP_LIB)
|
|||
clean :
|
||||
$(MAKE) -C pscrypto/ clean
|
||||
$(MAKE) -C $(CRYPTOPP_DIR) clean
|
||||
|
||||
.PHONY : all clean
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue