https://github.com/mupq/pqm4
Raw File
Tip revision: 827f152bdd301a73a9b1036d29a41a3e49710894 authored by Matthias J. Kannwischer on 28 March 2023, 07:52:05 UTC
eliminate some smaller buffers
Tip revision: 827f152
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