Skip to content

Commit

Permalink
- make sure .depend is created for all targets as otherwise you get
Browse files Browse the repository at this point in the history
  an include error (and we would need to have .depend in Subversion).

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@4557 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Nov 23, 2009
1 parent f608fff commit bb750a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Compiler/Makefile.in
Expand Up @@ -116,7 +116,7 @@ test:
# (cd $$d ; $(MAKE)) \
# done

clean:
clean: .depend
@for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) clean) \
done
Expand All @@ -126,7 +126,7 @@ clean:
-cd $(builddir_bin) && rm -f $(SCRIPT_FILES) && rm -f $(DOC_FILES)
-cd $(builddir_doc) && rm -f $(DOC_FILES)

dclean:
dclean: .depend
@for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) clean) \
done
Expand All @@ -136,15 +136,15 @@ dclean:
-cd $(builddir_bin) && rm -f $(SCRIPTS_FILES) && rm -f $(DOC_FILES)
-cd $(builddir_doc) && rm -f $(DOC_FILES)

reallyclean:
reallyclean: .depend
@for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) reallyclean) \
done
(cd omc_release; $(MAKE) reallyclean)
-$(RM) -f $(SRCH)
-$(RM) -f $(builddir)/$(PROG)$(EXEEXT)

dreallyclean:
dreallyclean: .depend
@for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) reallyclean) \
done
Expand Down

0 comments on commit bb750a5

Please sign in to comment.