mirror of
				https://github.com/Mbed-TLS/mbedtls.git
				synced 2025-10-30 10:45:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			205 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			205 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| DESTDIR=/usr/local
 | |
| PREFIX=mbedtls_
 | |
| PERL ?= perl
 | |
| 
 | |
| ifneq (,$(filter-out lib library/%,$(or $(MAKECMDGOALS),all)))
 | |
|     ifeq (,$(wildcard framework/exported.make))
 | |
|         # Use the define keyword to get a multi-line message.
 | |
|         # GNU make appends ".  Stop.", so tweak the ending of our message accordingly.
 | |
|         ifneq (,$(wildcard .git))
 | |
|             define error_message
 | |
| ${MBEDTLS_PATH}/framework/exported.make not found (and does appear to be a git checkout). Run `git submodule update --init` from the source tree to fetch the submodule contents.
 | |
| This is a fatal error
 | |
|             endef
 | |
|         else
 | |
|             define error_message
 | |
| ${MBEDTLS_PATH}/framework/exported.make not found (and does not appear to be a git checkout). Please ensure you have downloaded the right archive from the release page on GitHub.
 | |
|             endef
 | |
|         endif
 | |
|         $(error $(error_message))
 | |
|     endif
 | |
|     include framework/exported.make
 | |
| endif
 | |
| 
 | |
| .SILENT:
 | |
| 
 | |
| .PHONY: all no_test programs lib tests install uninstall clean test check lcov apidoc apidoc_clean
 | |
| 
 | |
| all: programs tests
 | |
| 
 | |
| no_test: programs
 | |
| 
 | |
| programs: lib mbedtls_test
 | |
| 	$(MAKE) -C programs
 | |
| 
 | |
| ssl-opt: lib mbedtls_test
 | |
| 	$(MAKE) -C programs ssl-opt
 | |
| 	$(MAKE) -C tests ssl-opt
 | |
| 
 | |
| lib:
 | |
| 	$(MAKE) -C library
 | |
| 
 | |
| ifndef PSASIM
 | |
| tests: lib
 | |
| endif
 | |
| tests: mbedtls_test
 | |
| 	$(MAKE) -C tests
 | |
| 
 | |
| mbedtls_test:
 | |
| 	$(MAKE) -C tests mbedtls_test
 | |
| 
 | |
| .PHONY: FORCE
 | |
| FORCE:
 | |
| 
 | |
| library/%: FORCE
 | |
| 	$(MAKE) -C library $*
 | |
| programs/%: FORCE
 | |
| 	$(MAKE) -C programs $*
 | |
| tests/%: FORCE
 | |
| 	$(MAKE) -C tests $*
 | |
| 
 | |
| .PHONY: generated_files
 | |
| generated_files: library/generated_files
 | |
| generated_files: programs/generated_files
 | |
| generated_files: tests/generated_files
 | |
| 
 | |
| # Set GEN_FILES to the empty string to disable dependencies on generated
 | |
| # source files. Then `make generated_files` will only build files that
 | |
| # are missing, it will not rebuilt files that are present but out of date.
 | |
| # This is useful, for example, if you have a source tree where
 | |
| # `make generated_files` has already run and file timestamps reflect the
 | |
| # time the files were copied or extracted, and you are now in an environment
 | |
| # that lacks some of the necessary tools to re-generate the files.
 | |
| # If $(GEN_FILES) is non-empty, the generated source files' dependencies
 | |
| # are treated ordinarily, based on file timestamps.
 | |
| GEN_FILES ?= yes
 | |
| 
 | |
| # In dependencies where the target is a configuration-independent generated
 | |
| # file, use `TARGET: $(gen_file_dep) DEPENDENCY1 DEPENDENCY2 ...`
 | |
| # rather than directly `TARGET: DEPENDENCY1 DEPENDENCY2 ...`. This
 | |
| # enables the re-generation to be turned off when GEN_FILES is disabled.
 | |
| ifdef GEN_FILES
 | |
| gen_file_dep =
 | |
| else
 | |
| # Order-only dependency: generate the target if it's absent, but don't
 | |
| # re-generate it if it's present but older than its dependencies.
 | |
| gen_file_dep = |
 | |
| endif
 | |
| 
 | |
| ifndef WINDOWS
 | |
| install: no_test
 | |
| 	mkdir -p $(DESTDIR)/include/mbedtls
 | |
| 	cp -rp include/mbedtls $(DESTDIR)/include
 | |
| 	cp -rp tf-psa-crypto/drivers/builtin/include/mbedtls $(DESTDIR)/include
 | |
| 	mkdir -p $(DESTDIR)/include/psa
 | |
| 	cp -rp tf-psa-crypto/include/psa $(DESTDIR)/include
 | |
| 
 | |
| 	mkdir -p $(DESTDIR)/lib
 | |
| 	cp -RP library/libmbedtls.*    $(DESTDIR)/lib
 | |
| 	cp -RP library/libmbedx509.*   $(DESTDIR)/lib
 | |
| 	cp -RP library/libmbedcrypto.* $(DESTDIR)/lib
 | |
| 
 | |
| 	mkdir -p $(DESTDIR)/bin
 | |
| 	for p in programs/*/* ; do              \
 | |
| 	    if [ -x $$p ] && [ ! -d $$p ] ;     \
 | |
| 	    then                                \
 | |
| 	        f=$(PREFIX)`basename $$p` ;     \
 | |
| 	        cp $$p $(DESTDIR)/bin/$$f ;     \
 | |
| 	    fi                                  \
 | |
| 	done
 | |
| 
 | |
| uninstall:
 | |
| 	rm -rf $(DESTDIR)/include/mbedtls
 | |
| 	rm -rf $(DESTDIR)/include/psa
 | |
| 	rm -f $(DESTDIR)/lib/libmbedtls.*
 | |
| 	rm -f $(DESTDIR)/lib/libmbedx509.*
 | |
| 	rm -f $(DESTDIR)/lib/libmbedcrypto.*
 | |
| 
 | |
| 	for p in programs/*/* ; do              \
 | |
| 	    if [ -x $$p ] && [ ! -d $$p ] ;     \
 | |
| 	    then                                \
 | |
| 	        f=$(PREFIX)`basename $$p` ;     \
 | |
| 	        rm -f $(DESTDIR)/bin/$$f ;      \
 | |
| 	    fi                                  \
 | |
| 	done
 | |
| endif
 | |
| 
 | |
| clean: clean_more_on_top
 | |
| 	$(MAKE) -C library clean
 | |
| 	$(MAKE) -C programs clean
 | |
| 	$(MAKE) -C tests clean
 | |
| 
 | |
| clean_more_on_top:
 | |
| ifndef WINDOWS
 | |
| 	find . \( -name \*.gcno -o -name \*.gcda -o -name \*.info \) -exec rm {} +
 | |
| endif
 | |
| 
 | |
| neat: clean_more_on_top
 | |
| 	$(MAKE) -C library neat
 | |
| 	$(MAKE) -C programs neat
 | |
| 	$(MAKE) -C tests neat
 | |
| 
 | |
| ifndef PSASIM
 | |
| check: lib
 | |
| endif
 | |
| check: tests
 | |
| 	$(MAKE) -C tests check
 | |
| 
 | |
| test: check
 | |
| 
 | |
| ifndef WINDOWS
 | |
| # For coverage testing:
 | |
| # 1. Build with:
 | |
| #         make CFLAGS='--coverage -g3 -O0' LDFLAGS='--coverage'
 | |
| # 2. Run the relevant tests for the part of the code you're interested in.
 | |
| #    For the reference coverage measurement, see
 | |
| #    tests/scripts/basic-build-test.sh
 | |
| # 3. Run scripts/lcov.sh to generate an HTML report.
 | |
| lcov:
 | |
| 	scripts/lcov.sh
 | |
| 
 | |
| apidoc:
 | |
| 	mkdir -p apidoc
 | |
| 	cd doxygen && doxygen mbedtls.doxyfile
 | |
| 
 | |
| apidoc_clean:
 | |
| 	rm -rf apidoc
 | |
| endif
 | |
| 
 | |
| ## Editor navigation files
 | |
| C_SOURCE_FILES = $(wildcard \
 | |
| 	include/*/*.h \
 | |
| 	library/*.[hc] \
 | |
| 	tf-psa-crypto/core/*.[hc] \
 | |
| 	tf-psa-crypto/include/*/*.h \
 | |
| 	tf-psa-crypto/drivers/*/include/*/*.h \
 | |
| 	tf-psa-crypto/drivers/*/include/*/*/*.h \
 | |
| 	tf-psa-crypto/drivers/*/include/*/*/*/*.h \
 | |
| 	tf-psa-crypto/drivers/builtin/src/*.[hc] \
 | |
| 	tf-psa-crypto/drivers/*/*.c \
 | |
| 	tf-psa-crypto/drivers/*/*/*.c \
 | |
| 	tf-psa-crypto/drivers/*/*/*/*.c \
 | |
| 	tf-psa-crypto/drivers/*/*/*/*/*.c \
 | |
| 	programs/*/*.[hc] \
 | |
| 	framework/tests/include/*/*.h framework/tests/include/*/*/*.h \
 | |
| 	framework/tests/src/*.c framework/tests/src/*/*.c \
 | |
| 	tests/suites/*.function \
 | |
| 	tf-psa-crypto/tests/suites/*.function \
 | |
| )
 | |
| # Exuberant-ctags invocation. Other ctags implementations may require different options.
 | |
| CTAGS = ctags --langmap=c:+.h.function --line-directives=no -o
 | |
| tags: $(C_SOURCE_FILES)
 | |
| 	$(CTAGS) $@ $(C_SOURCE_FILES)
 | |
| TAGS: $(C_SOURCE_FILES)
 | |
| 	etags --no-line-directive -o $@ $(C_SOURCE_FILES)
 | |
| global: GPATH GRTAGS GSYMS GTAGS
 | |
| GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES)
 | |
| 	ls $(C_SOURCE_FILES) | gtags -f - --gtagsconf .globalrc
 | |
| cscope: cscope.in.out cscope.po.out cscope.out
 | |
| cscope.in.out cscope.po.out cscope.out: $(C_SOURCE_FILES)
 | |
| 	cscope -bq -u -Iinclude -Ilibrary -Itf-psa-crypto/core \
 | |
|         -Itf-psa-crypto/include \
 | |
| 	-Itf-psa-crypto/drivers/builtin/src \
 | |
| 	$(patsubst %,-I%,$(wildcard tf-psa-crypto/drivers/*/include)) -Iframework/tests/include $(C_SOURCE_FILES)
 | |
| .PHONY: cscope global
 |