Initial commit

This commit is contained in:
Chord 2016-04-21 21:45:12 -04:00
commit b49a3d0301
11 changed files with 621 additions and 0 deletions

15
Makefile Normal file
View 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