mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-08-07 08:57:28 +08:00
12 lines
204 B
Makefile
12 lines
204 B
Makefile
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
|