mirror of
https://github.com/psforever/PSCrypto.git
synced 2026-01-20 03:24:46 +00:00
24 lines
468 B
Makefile
24 lines
468 B
Makefile
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/$(call lib-name,pscrypto)
|
|
|
|
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
|
|
|
|
.PHONY : all clean
|