https://github.com/mupq/pqm4
Revision 012cc153510b1f9c056d2af4de665b719ea265a5 authored by Richard Petri on 08 October 2021, 07:39:46 UTC, committed by Richard Petri on 08 October 2021, 07:39:46 UTC
1 parent 8b9805e
Raw File
Tip revision: 012cc153510b1f9c056d2af4de665b719ea265a5 authored by Richard Petri on 08 October 2021, 07:39:46 UTC
Add naked attribute to pure asm functions
Tip revision: 012cc15
Makefile
.PHONY: all
all: tests tests-bin

include mupq/mk/config.mk
include mk/config.mk
include mk/crypto.mk
include mupq/mk/host-crypto.mk
include mupq/mk/rules.mk
include mupq/mk/schemes.mk
include mk/tests.mk

.PHONY: clean libclean

clean: libclean
	rm -rf elf/
	rm -rf bin/
	rm -rf bin-host/
	rm -rf obj/
	rm -rf testvectors/
	rm -rf benchmarks/

.SECONDARY:
back to top