Skip to content

Commit 3621d74

Browse files
Wrap Makefile include statements in ifneq ($(MAKECMDGOALS),clean) to
prevent rebulding dependency rules when doing make clean
1 parent 2507b65 commit 3621d74

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

examples/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ endif
9090
depend: $(OBJS:.o=.d) $(EXES:=.d)
9191
cat *.d >depend
9292

93+
ifneq ($(MAKECMDGOALS),clean)
9394
include depend
95+
endif
9496

9597
.cc.o:
9698
$(CPLUSPLUS) $(CFLAGS) -c -o $@ $<

java/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ endif
5757
depend: $(OBJS:.o=.d) $(EXES:=.d) $(DLLS:lib%.so=%.d)
5858
cat *.d >depend
5959

60+
ifneq ($(MAKECMDGOALS),clean)
6061
include depend
62+
endif
6163

6264
.cc.o:
6365
$(CPLUSPLUS) $(CFLAGS) -c -o $@ $<

javaExamples/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ endif
6666
depend: $(OBJS:.o=.d) $(EXES:=.d) $(DLLS:lib%.so=%.d)
6767
cat *.d >depend
6868

69+
ifneq ($(MAKECMDGOALS),clean)
6970
include depend
71+
endif
7072

7173
.cc.o:
7274
$(CPLUSPLUS) $(CFLAGS) -c -o $@ $<

mpi-examples/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ endif
8888
depend: $(OBJS:.o=.d) $(EXES:=.d)
8989
cat *.d >depend
9090

91+
ifneq ($(MAKECMDGOALS),clean)
9192
include depend
93+
endif
9294

9395
.cc.o:
9496
$(CPLUSPLUS) $(CFLAGS) -c $<

pythonExample/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ example.so: $(OBJS)
1515
.cc.d:
1616
gcc $(CFLAGS) -w -MM -MG $< >$@
1717

18+
ifneq ($(MAKECMDGOALS),clean)
1819
include $(OBJS:.o=.d) $(EXES:=.d)
20+
endif
1921

2022
clean:
2123
rm -f *.o *~ "\#*\#" core *.exh *.exc *.d *.cd *,D

test/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ endif
100100
depend: $(OBJS:.o=.d) $(EXES:=.d)
101101
cat *.d >depend
102102

103+
ifneq ($(MAKECMDGOALS),clean)
103104
include depend
105+
endif
104106

105107
.cc.o:
106108
$(CPLUSPLUS) $(CFLAGS) -c -o $@ $<

test/c++11/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ endif
9191
depend: $(OBJS:.o=.d) $(EXES:=.d)
9292
cat *.d >depend
9393

94+
ifneq ($(MAKECMDGOALS),clean)
9495
include depend
96+
endif
9597

9698
.cc.o:
9799
$(CPLUSPLUS) $(CFLAGS) -c -o $@ $<

0 commit comments

Comments
 (0)