summaryrefslogtreecommitdiffstats
path: root/crawl-ref/dolinks.sh
blob: d327470fe6f26f5a1289ee13952d6611bf0011e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

mkdir -p NORMAL
mkdir -p WIZARD

pushd NORMAL ; ln -sf ../source/rltiles . ; ln -sf ../source/util . ; ln -sf ../source/*.h ../source/*.cc ../source/makefile* . ; popd
pushd WIZARD ; ln -sf ../source/rltiles . ; ln -sf ../source/util . ; ln -sf ../source/*.h ../source/*.cc ../source/makefile* . ; popd

if [ -L tiles ]; then
	true
else
	ln -sf source/rltiles tiles
fi

if [ -L dat ]; then
	true
else
	ln -sf source/dat dat
fi