mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 20:45:44 +01:00
21 lines
280 B
Makefile
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
|