crypto: Add a Makefile

This commit is contained in:
Jaeden Amero 2018-06-25 17:08:36 +01:00 committed by itayzafrir
parent 5a6ade8ab6
commit 1ff639d37c

20
crypto/Makefile Normal file
View 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