Skip to content

Commit 6337947

Browse files
authored
Merge pull request #1271 from stan-dev/fix/always-creating-profile
Fix `make-clean`
2 parents 07e3e4f + 92b6fc9 commit 6337947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ clean: clean-tests
283283
$(RM) bin/stanc$(EXE) bin/stansummary$(EXE) bin/print$(EXE) bin/diagnose$(EXE)
284284
$(RM) -r bin/cmdstan
285285
@echo ' removing cached compiler objects'
286-
$(RM) $(wildcard src/cmdstan/main*.o) $(wildcard $(STAN)src/stan/model/model_header*.hpp.gch)
287-
$(RM) -r $(STAN)src/stan/model/model_header.hpp.gch/
286+
$(RM) $(wildcard src/cmdstan/main*.o)
287+
$(RM) -r $(wildcard $(STAN)src/stan/model/model_header*.hpp.gch)
288288
@echo ' removing built example model'
289289
$(RM) examples/bernoulli/bernoulli$(EXE) examples/bernoulli/bernoulli.o examples/bernoulli/bernoulli.d examples/bernoulli/bernoulli.hpp $(wildcard examples/bernoulli/*.csv)
290290

0 commit comments

Comments
 (0)