mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
428 B
Makefile
21 lines
428 B
Makefile
export PROJECT = test_bloom
|
|
include ../Makefile.tests_common
|
|
|
|
ifneq (,$(filter msb-430,$(BOARD)))
|
|
include $(RIOTBASE)/Makefile.unsupported
|
|
elifneq (,$(filter msb-430h,$(BOARD)))
|
|
include $(RIOTBASE)/Makefile.unsupported
|
|
endif
|
|
|
|
USEMODULE += hashes
|
|
USEMODULE += bloom
|
|
|
|
export PROJDEPS = sets.h
|
|
|
|
DISABLE_MODULE += auto_init
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
sets.h: generate_sets.py words.txt.gz
|
|
./generate_sets.py 10000 20
|