File: Makefile

package info (click to toggle)
omd 1.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,424 kB
  • sloc: ml: 9,312; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 211 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##
# Omd
#
# @file

.PHONY: test build fmt deps

build: deps
	dune build

deps:
	opam install . --deps-only --yes

test:
	dune build @gen --auto-promote
	dune runtest

fmt:
	dune build @fmt --auto-promote
# end