The Makefile in every directory that can generate a .dSYM should also clean .dSYM files
This commit is contained in:
parent
424fbe6583
commit
4bc1b39c1c
1
examples/igmp/.gitignore
vendored
1
examples/igmp/.gitignore
vendored
@ -11,4 +11,3 @@
|
||||
/*.lib
|
||||
/*.src
|
||||
/*.exe
|
||||
/*.dSYM
|
||||
|
@ -135,6 +135,7 @@ clean:
|
||||
$(call DELFILE, *$(HOSTOBJEXT))
|
||||
$(call DELFILE, $(HOST_BIN))
|
||||
$(call DELFILE, .built)
|
||||
$(call DELFILE, *.dSYM)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
|
@ -94,5 +94,6 @@ distclean: clean
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
$(call DELFILE, host$(HOSTEXEEXT))
|
||||
$(call DELFILE, *.dSYM)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -52,6 +52,7 @@ $(BIN): $(OBJS)
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, *.dSYM)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -52,6 +52,7 @@ $(BIN): $(OBJS)
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, *.dSYM)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -119,6 +119,7 @@ clean:
|
||||
$(call DELFILE, .built)
|
||||
$(call DELFILE, $(TARG_BIN))
|
||||
$(call DELFILE, $(HOST_BIN))
|
||||
$(call DELFILE, *.dSYM)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
|
Loading…
Reference in New Issue
Block a user