mirror of
https://github.com/psforever/PSCrypto.git
synced 2026-01-19 19:14:44 +00:00
16 lines
315 B
Makefile
16 lines
315 B
Makefile
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
|