File: Makefile

package info (click to toggle)
ocamlgsl 1.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,296 kB
  • sloc: ml: 8,523; ansic: 6,755; makefile: 29
file content (10 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
EXAMPLES = $(wildcard *.ml)
TARGETS = $(patsubst %.ml, %.bc, $(EXAMPLES))

.PHONY: all clean

all:
	@dune build $(TARGETS)

clean:
	@dune clean