blob: 369c09028890e6a6c4844f7f3da80e1b05dff51a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
BASEDIR= /var/twind/localhost/tests
testdirs:
mkdir -p $(BASEDIR)
mkdir -p $(BASEDIR)/subdir
testfiles:
echo "1e6b1c887c59a315edb7eb9a315fc84c" > $(BASEDIR)/index.gmi
echo "1e6b1c887c59a315edb7eb9a315fc84c" > $(BASEDIR)/subdir/index.gmi
echo "1e6b1c887c59a315edb7eb9a315fc84c" > $(BASEDIR)/subdir/test.gmi
ln -s index.gmi $(BASEDIR)/link.gmi
all: testdir testfiles
|