2014-07-30 21:30:22 +02:00
|
|
|
APPLICATION = bloom
|
2014-02-21 19:07:16 +01:00
|
|
|
include ../Makefile.tests_common
|
2014-01-10 16:21:35 +01:00
|
|
|
|
2014-09-24 22:55:04 +02:00
|
|
|
BOARD_INSUFFICIENT_RAM := chronos msb-430 msb-430h redbee-econotag \
|
|
|
|
telosb wsn430-v1_3b wsn430-v1_4 z1 stm32f0discovery
|
2014-01-10 16:21:35 +01:00
|
|
|
|
2014-07-15 12:11:04 +02:00
|
|
|
BOARD_BLACKLIST := arduino-mega2560
|
|
|
|
# arduino-mega2560: Errors in assembly, e.g:
|
|
|
|
# Error: value of 105617 too large for field of 2 bytes at 20018
|
|
|
|
|
2014-01-10 16:21:35 +01:00
|
|
|
USEMODULE += hashes
|
|
|
|
USEMODULE += bloom
|
|
|
|
|
2014-06-21 18:08:11 +02:00
|
|
|
APPDEPS = $(BINDIR)projdeps/sets.h
|
2014-06-18 18:19:43 +02:00
|
|
|
|
|
|
|
INCLUDES += -I$(BINDIR)projdeps
|
2014-01-10 16:21:35 +01:00
|
|
|
|
2014-04-02 14:41:17 +02:00
|
|
|
DISABLE_MODULE += auto_init
|
|
|
|
|
2014-01-10 16:21:35 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
|
2014-06-18 18:19:43 +02:00
|
|
|
$(BINDIR)projdeps/sets.h: generate_sets.py words.txt.gz
|
|
|
|
mkdir -p ${@D}
|
|
|
|
./generate_sets.py words.txt.gz $@
|