https://github.com/mupq/pqm4
Raw File
Tip revision: 8d44b724396ddbc0db55d5de93bec252cedb9c04 authored by Matthias J. Kannwischer on 13 August 2024, 00:06:44 UTC
init msg buffer in {speed,hashing}.c (#351)
Tip revision: 8d44b72
tests.mk
ifeq ($(AIO),1)
elf/boardtest.elf: common/test.c $(LINKDEPS) $(CONFIG)
	$(compiletest)

elf/aestest.elf: common/aestest.c $(LINKDEPS) $(CONFIG)
	$(compiletest)
else
elf/boardtest.elf: $(call objs,common/test.c) $(LINKDEPS) $(CONFIG)

elf/aestest.elf: $(call objs,common/aestest.c) $(LINKDEPS) $(CONFIG)
endif


tests: elf/boardtest.elf elf/aestest.elf
tests-bin: bin/boardtest.bin bin/aestest.bin
back to top