1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/test_bloom/Makefile

25 lines
485 B
Makefile

# name of your project
export PROJECT = test_bloom
# for easy switching of boards
export BOARD ?= native
# this has to be the absolute path of the RIOT-base dir
export RIOTBASE = $(CURDIR)/../..
ifneq (,$(findstring msb-430,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
else
## Modules to include.
USEMODULE += hashes
USEMODULE += bloom
export PROJDEPS = sets.h
include $(RIOTBASE)/Makefile.include
endif
sets.h: generate_sets.py words.txt.gz
./generate_sets.py 10000 20