mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
494 B
Makefile
21 lines
494 B
Makefile
export APPLICATION = test_bloom
|
|
include ../Makefile.tests_common
|
|
|
|
BOARD_INSUFFICIENT_RAM := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \
|
|
telosb wsn430-v1_3b wsn430-v1_4 z1
|
|
|
|
USEMODULE += hashes
|
|
USEMODULE += bloom
|
|
|
|
APPDEPS = $(BINDIR)projdeps/sets.h
|
|
|
|
INCLUDES += -I$(BINDIR)projdeps
|
|
|
|
DISABLE_MODULE += auto_init
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
$(BINDIR)projdeps/sets.h: generate_sets.py words.txt.gz
|
|
mkdir -p ${@D}
|
|
./generate_sets.py words.txt.gz $@
|