mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
8413582b6e
Note that it is intentional that the checksum file is not downloaded. The intent is to check those into git.
14 lines
315 B
Makefile
14 lines
315 B
Makefile
# -*- makefile -*-
|
|
|
|
TEST_DATABASE_MIRROR=http://notmuchmail.org/releases/test-databases
|
|
|
|
dir := test/test-databases
|
|
|
|
test_databases := $(dir)/database-v1.tar.xz
|
|
|
|
%.tar.xz:
|
|
wget -nv -O $@ ${TEST_DATABASE_MIRROR}/$(notdir $@);
|
|
|
|
download-test-databases: ${test_databases}
|
|
|
|
DISTCLEAN := $(DISTCLEAN) ${test_databases}
|