mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
fe8cd90f97
It turns out to be inconvenient to delete the downloaded datafiles with distclean, so I propose a new target which does that instead. The closest conventional target is 'maintainer-clean'; the difference here is that having the original source tarball is not enough to reconstruct these files.
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}
|
|
|
|
DATACLEAN := $(DATACLEAN) ${test_databases}
|