Skip to content

Commit

Permalink
have default make targets ignore promoted rules
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Feb 15, 2024
1 parent 11a2299 commit c03c584
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

DUNE_OPTS?=
build:
dune build @install $(DUNE_OPTS)
dune build @install $(DUNE_OPTS) --ignore-promoted-rules

clean:
@dune clean

test:
@dune runtest $(DUNE_OPTS)
@dune runtest $(DUNE_OPTS) --ignore-promoted-rules

doc:
@dune build $(DUNE_OPTS) @doc
Expand All @@ -17,7 +17,7 @@ build-dev:

WATCH?= @check @runtest
watch:
dune build $(DUNE_OPTS) -w $(WATCH)
dune build $(DUNE_OPTS) -w $(WATCH) --ignore-promoted-rules

DUNE_OPTS_BENCH?=--profile=release

Expand Down

0 comments on commit c03c584

Please sign in to comment.