mirror of
https://github.com/psforever/PSCrypto.git
synced 2026-07-13 07:24:51 +00:00
Initial commit
This commit is contained in:
commit
b49a3d0301
11 changed files with 621 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
CRYPTOPP_DIR=external/psf-cryptopp
|
||||
CRYPTOPP_LIB=$(CRYPTOPP_DIR)/libcryptopp.a
|
||||
PSCRYPTO=pscrypto/pscrypto.dll
|
||||
|
||||
all : $(CRYPTOPP_LIB) $(PSCRYPTO)
|
||||
|
||||
$(CRYPTOPP_LIB) :
|
||||
$(MAKE) -C $(CRYPTOPP_DIR)
|
||||
|
||||
$(PSCRYPTO) : $(CRYPTOPP_LIB)
|
||||
$(MAKE) -C pscrypto/
|
||||
|
||||
clean :
|
||||
$(MAKE) -C pscrypto/ clean
|
||||
$(MAKE) -C $(CRYPTOPP_DIR) clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue