Skip to content

Commit bb750a5

Browse files
committed
- make sure .depend is created for all targets as otherwise you get
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
1 parent f608fff commit bb750a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Compiler/Makefile.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ test:
116116
# (cd $$d ; $(MAKE)) \
117117
# done
118118

119-
clean:
119+
clean: .depend
120120
@for d in $(SUBDIRS); do \
121121
(cd $$d ; $(MAKE) clean) \
122122
done
@@ -126,7 +126,7 @@ clean:
126126
-cd $(builddir_bin) && rm -f $(SCRIPT_FILES) && rm -f $(DOC_FILES)
127127
-cd $(builddir_doc) && rm -f $(DOC_FILES)
128128

129-
dclean:
129+
dclean: .depend
130130
@for d in $(SUBDIRS); do \
131131
(cd $$d ; $(MAKE) clean) \
132132
done
@@ -136,15 +136,15 @@ dclean:
136136
-cd $(builddir_bin) && rm -f $(SCRIPTS_FILES) && rm -f $(DOC_FILES)
137137
-cd $(builddir_doc) && rm -f $(DOC_FILES)
138138

139-
reallyclean:
139+
reallyclean: .depend
140140
@for d in $(SUBDIRS); do \
141141
(cd $$d ; $(MAKE) reallyclean) \
142142
done
143143
(cd omc_release; $(MAKE) reallyclean)
144144
-$(RM) -f $(SRCH)
145145
-$(RM) -f $(builddir)/$(PROG)$(EXEEXT)
146146

147-
dreallyclean:
147+
dreallyclean: .depend
148148
@for d in $(SUBDIRS); do \
149149
(cd $$d ; $(MAKE) reallyclean) \
150150
done

0 commit comments

Comments
 (0)