Skip to content

Commit

Permalink
Merge pull request #1271 from stan-dev/fix/always-creating-profile
Browse files Browse the repository at this point in the history
Fix `make-clean`
  • Loading branch information
SteveBronder authored May 13, 2024
2 parents 07e3e4f + 92b6fc9 commit 6337947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ clean: clean-tests
$(RM) bin/stanc$(EXE) bin/stansummary$(EXE) bin/print$(EXE) bin/diagnose$(EXE)
$(RM) -r bin/cmdstan
@echo ' removing cached compiler objects'
$(RM) $(wildcard src/cmdstan/main*.o) $(wildcard $(STAN)src/stan/model/model_header*.hpp.gch)
$(RM) -r $(STAN)src/stan/model/model_header.hpp.gch/
$(RM) $(wildcard src/cmdstan/main*.o)
$(RM) -r $(wildcard $(STAN)src/stan/model/model_header*.hpp.gch)
@echo ' removing built example model'
$(RM) examples/bernoulli/bernoulli$(EXE) examples/bernoulli/bernoulli.o examples/bernoulli/bernoulli.d examples/bernoulli/bernoulli.hpp $(wildcard examples/bernoulli/*.csv)

Expand Down

0 comments on commit 6337947

Please sign in to comment.