crypto: Add a Makefile
This commit is contained in:
parent
5a6ade8ab6
commit
1ff639d37c
1 changed files with 20 additions and 0 deletions
20
crypto/Makefile
Normal file
20
crypto/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
.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
|
Loading…
Reference in a new issue