Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit fcd3298

Browse files
committed
mostlyclean: also remove .i and .s files
These files will be generated by `make` if CFLAGS contains `-save-temps` or related flags. Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
1 parent 0d3d976 commit fcd3298

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
*~
22
*.o
3+
*.i
4+
*.s
35
.libs/
46
*.lo
57
*.pc

Makefile.am

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ libbsdiff_la_LDFLAGS = \
9797
-version-info $(LIBBSDIFF_CURRENT):$(LIBBSDIFF_REVISION):$(LIBBSDIFF_AGE) \
9898
-Wl,--version-script=$(top_srcdir)/src/bsdiff.sym
9999

100+
mostlyclean-local:
101+
-rm -f *.i
102+
-rm -f *.s
103+
100104
distclean-local:
101105
-rm -f config.guess~
102106
-rm -f config.h.in~

0 commit comments

Comments
 (0)