1
0
Fork 0
mirror of https://github.com/yuzu-emu/mbedtls.git synced 2025-09-06 03:43:18 +00:00
mbedtls/crypto/Makefile
2018-09-12 16:50:07 +03:00

21 lines
280 B
Makefile

.PHONY: all lib programs tests clean test
all: programs tests
lib:
$(MAKE) -C library
programs: lib
$(MAKE) -C programs
tests: lib
$(MAKE) -C tests
clean:
$(MAKE) -C library clean
$(MAKE) -C programs clean
$(MAKE) -C tests clean
test: lib tests
$(MAKE) -C tests test