1
Fork 0

reorganise

move exe example to examples/
get rid of the second example
move tests to tests/
don't shadow show in Pretty
This commit is contained in:
Jake Wheat 2024-01-26 15:28:15 +00:00
parent fa5091ac80
commit 45669ed7d3
34 changed files with 51 additions and 63 deletions

View file

@ -6,13 +6,12 @@
.PHONY : build
build :
cabal build --enable-tests -fparserexe
cabal build
.PHONY : test
test :
cabal run test:Tests -- --hide-successes --ansi-tricks=false
.PHONY : test-coverage
test-coverage :
cabal test --enable-coverage
@ -24,8 +23,10 @@ clean :
.PHONY : parserexe
parserexe :
cabal build -fparserexe SimpleSqlParserTool
cabal build -fparserexe SimpleSQLParserTool
.PHONY : all
all : build test parserexe
###############################################