gitignore and makefile for building with cabal and make

makefile should also delete cabal generated files on cleanup so
they could be used interchangably.

ensure that all generated files are ignored as recommended by
bese practices.
This commit is contained in:
Carlo Marcelo Arenas Belon 2013-10-28 01:35:19 -07:00
parent b9f7f82e29
commit d6b903e6cc
2 changed files with 7 additions and 1 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*.hi
*.o
.tests
jsoncheck
shellcheck
dist

View File

@ -18,6 +18,6 @@ jsoncheck: regardless
./test/runQuack && touch .tests ./test/runQuack && touch .tests
clean: clean:
rm -f .tests shellcheck jsoncheck *.hi *.o ShellCheck/*.hi ShellCheck/*.o rm -f .tests dist shellcheck jsoncheck *.hi *.o ShellCheck/*.hi ShellCheck/*.o
regardless: regardless: