mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 06:45:37 +01:00
build: Makefile: simplify root Makefile
1. Use $(MAKE) -C 2. Use target dependencies instead of dups. Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
This commit is contained in:
parent
eb53fffc01
commit
06f0d26240
27
Makefile
27
Makefile
@ -5,17 +5,18 @@ OLDPREFIX=polarssl_
|
||||
|
||||
.SILENT:
|
||||
|
||||
all:
|
||||
cd library && $(MAKE) all && cd ..
|
||||
cd programs && $(MAKE) all && cd ..
|
||||
cd tests && $(MAKE) all && cd ..
|
||||
all: programs tests
|
||||
|
||||
no_test:
|
||||
cd library && $(MAKE) all && cd ..
|
||||
cd programs && $(MAKE) all && cd ..
|
||||
no_test: programs
|
||||
|
||||
programs: lib
|
||||
$(MAKE) -C programs
|
||||
|
||||
lib:
|
||||
cd library && $(MAKE) all && cd ..
|
||||
$(MAKE) -C library
|
||||
|
||||
tests: lib
|
||||
$(MAKE) -C tests
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)/include/polarssl
|
||||
@ -51,13 +52,13 @@ uninstall:
|
||||
done
|
||||
|
||||
clean:
|
||||
cd library && $(MAKE) clean && cd ..
|
||||
cd programs && $(MAKE) clean && cd ..
|
||||
cd tests && $(MAKE) clean && cd ..
|
||||
$(MAKE) -C library clean
|
||||
$(MAKE) -C programs clean
|
||||
$(MAKE) -C tests clean
|
||||
find . \( -name \*.gcno -o -name \*.gcda -o -name *.info \) -exec rm {} +
|
||||
|
||||
check: lib
|
||||
( cd tests && $(MAKE) && $(MAKE) check )
|
||||
check: tests
|
||||
$(MAKE) -C tests check
|
||||
|
||||
test-ref-configs:
|
||||
tests/scripts/test-ref-configs.pl
|
||||
|
Loading…
Reference in New Issue
Block a user