File: Makefile

package info (click to toggle)
haskell-binary 0.7.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 340 kB
  • ctags: 11
  • sloc: haskell: 4,087; makefile: 40; ansic: 39
file content (20 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ghc := ghc
ghc-flags := 

all: compiled

interpreted:
	runhaskell QC.hs 1000

compiled:
	$(ghc) --make -fhpc -O QC.hs -o qc -fforce-recomp -threaded -rtsopts -i../src -XCPP -package test-framework -package test-framework-quickcheck2 $(ghc-flags)
	rm -f qc.tix
	./qc --maximum-generated-tests=1000 -j2 +RTS -N2

hugs:
	runhugs -98 QC.hs  

clean:
	rm -f *.o *.hi qc *.tix *~

.PHONY: clean