2015-08-15 15:17:12 +02:00
|
|
|
|
|
|
|
# quick makefile to document how to do the various tasks
|
|
|
|
|
|
|
|
# there is no real reason to actually use the makefile except for a
|
|
|
|
# very small amount of convenience
|
|
|
|
|
|
|
|
.PHONY : build
|
|
|
|
build :
|
2019-08-31 14:41:07 +02:00
|
|
|
cabal v2-build --enable-tests -fparserexe
|
2015-08-15 15:17:12 +02:00
|
|
|
|
|
|
|
.PHONY : test
|
2019-07-07 12:33:02 +02:00
|
|
|
test :
|
2019-08-31 12:57:28 +02:00
|
|
|
cabal new-run test:Tests -- --hide-successes --ansi-tricks=false
|
2015-08-15 15:17:12 +02:00
|
|
|
|
|
|
|
.PHONY : website
|
|
|
|
website :
|
|
|
|
website/make_website.sh
|
|
|
|
|
|
|
|
.PHONY : clean
|
|
|
|
clean :
|
2019-07-07 12:33:02 +02:00
|
|
|
cabal v2-clean
|
2015-08-15 15:17:12 +02:00
|
|
|
rm -Rf build/
|
|
|
|
|
2019-07-07 12:33:02 +02:00
|
|
|
.PHONY: parserexe
|
|
|
|
parserexe :
|
|
|
|
cabal v2-build -fparserexe SimpleSqlParserTool
|