* Make sure boggle is always built with the same wordlist, and use the union

of wenglish and wbristish for that list. Building with web2 resulted in
     too many scrabble-words..


git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5187 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
2002-04-08 00:47:15 +00:00
parent f7e23d36bb
commit 65a3441113
4 changed files with 20 additions and 3 deletions

7
debian/rules vendored
View File

@@ -10,6 +10,11 @@ export DH_COMPAT=3
build: build-stamp
build-stamp:
dh_testdir
# Set up wordlist
cat /usr/share/dict/american-english /usr/share/dict/british-english | \
sort | uniq > temp-dictionary
./configure
$(MAKE)
$(MAKE) test
@@ -19,7 +24,7 @@ clean:
dh_testdir
dh_testroot
rm -f build-stamp
dh_clean
dh_clean temp-dictionary
-$(MAKE) -i distclean
# Build architecture-independent files here.