adding all of botlist, initial add
[botlist.git] / botlistprojects / botspider / spider / lib / haskell / Makefile
blobbab0ad565e190e3e2d6654fdb891eb775489a141
1 ###----------------------------------------------
2 ### Makefile
3 ### 9/20/2007
4 ###----------------------------------------------
6 TOP_DIR := $(shell pwd)
8 all: queuedump
10 build-all:
11 runhaskell Setup.hs configure
12 runhaskell Setup.hs build --verbose
14 trainreport:
15 runhaskell Setup.hs build --verbose
16 ./dist/build/trainreport/trainreport
18 queuedump:
19 runhaskell Setup.hs build --verbose
20 ./dist/build/queuedump/queuedump
22 tokenize:
23 runhaskell Setup.hs build --verbose
24 ./dist/build/tokenize/tokenize -i ../../var/lib/spiderdb/lexicon/stopwords/stopwords.tdb \
25 -o ../../var/lib/spiderdb/lexicon/stopwords/stopwords.tdb.tmp
27 clean:
28 rm -Rf dist
30 ###----------------------------------------------
31 ### End of the Script
32 ###----------------------------------------------