mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-14 10:37:26 -07:00
Added Makefile and horrifying test framework
This commit is contained in:
parent
4557f4acd3
commit
c6a05179e0
3 changed files with 95 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
all: .tests shpell
|
||||
true
|
||||
|
||||
shpell:
|
||||
ghc --make shpell #GHC handles the dependencies
|
||||
|
||||
.tests: *.hs */*.hs
|
||||
./test/runQuack && touch .tests
|
||||
|
||||
clean:
|
||||
rm -f .tests shpell *.hi *.o Shpell/*.hi Shpell/*.o
|
Loading…
Add table
Add a link
Reference in a new issue