mbedtls/crypto/Makefile

21 lines
280 B
Makefile
Raw Normal View History

2018-06-25 18:08:36 +02:00
.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