File: Makefile

package info (click to toggle)
ocaml-mm 0.8.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 804 kB
  • sloc: ml: 6,142; ansic: 3,115; makefile: 38; sh: 1
file content (40 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
all: build

build:
	@dune build

autotune:
	@dune exec ./autotune.exe

dictee:
	@dune exec ./dictee.exe test.mp3

display:
	@dune exec ./display.exe test.ppm

drums:
	@dune exec ./drums.exe

fft:
	@dune exec ./fft.exe test.wav

id:
	@dune exec ./id.exe test.wav

midiplayer:
	@dune exec ./midiplayer.exe test.mid

sine_wav:
	@dune exec ./sine_wav.exe

graphics:
	@dune exec ./graphics_test.exe

test:
	@dune exec ./test.exe

quick-test:
	@dune exec ./test.exe -- --skip-long

valgrind: build
	valgrind ../_build/default/examples/test.exe --skip-long