21 lines
375 B
Makefile
21 lines
375 B
Makefile
# TODO: Phase out Makefile in favor of Cabal
|
|
|
|
GHCFLAGS=-O9
|
|
|
|
all: shellcheck jsoncheck .tests
|
|
: Done
|
|
|
|
shellcheck: regardless
|
|
: Conditionally compiling shellcheck
|
|
ghc $(GHCFLAGS) --make shellcheck
|
|
|
|
.tests: *.hs */*.hs
|
|
: Running unit tests
|
|
./test/runQuack && touch .tests
|
|
|
|
clean:
|
|
rm -f .tests shellcheck *.hi *.o ShellCheck/*.hi ShellCheck/*.o
|
|
rm -rf dist
|
|
|
|
regardless:
|