Skip to content

Commit

Permalink
Update makefile clean file list with RPMs
Browse files Browse the repository at this point in the history
`make rpms` target is producing *.rpm files in two directories:
- result/build/00-srpm-build
- result/build/01-rpm-build

This commit add those RPM files to list of the files which will
be removed during `make clean`
  • Loading branch information
elkoniu committed Oct 14, 2024
1 parent e27e76c commit 587de0a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ MAINTAINERCLEANFILES = Makefile.in config.guess config.h.in config.sub \
py-compile m4/* po/Makefile.in.in po/Rules-quot \
test-driver

CLEANFILES = *~
CLEANFILES = *~
CLEANFILES += $(RPM_BUILD_DIR)
CLEANFILES += $(SRPM_BUILD_DIR)
CLEANFILES += *.tar.bz2

dist_noinst_DATA = $(PACKAGE_NAME).spec

Expand Down

0 comments on commit 587de0a

Please sign in to comment.