2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-30 13:58:22 +00:00

profiles/Makefile: use LOCAL_ADDITIONS using filter-out in clean target, which

is much cleaner.
This commit is contained in:
Jamie Strandboge 2010-08-05 16:00:23 -05:00
parent f9187ac661
commit eace04e2e7

View File

@ -65,13 +65,10 @@ install: local
install -m 644 ${EXTRAS_SOURCE}/* ${EXTRAS_DEST}
install -m 644 ${PROFILES_SOURCE}/local/* ${PROFILES_DEST}/local
LOCAL_ADDITIONS=$(filter-out ${PROFILES_SOURCE}/local/README, $(wildcard ${PROFILES_SOURCE}/local/*))
.PHONY: clean
clean:
-rm -f $(NAME)-$(VERSION)*.tar.gz Make.rules
for profile in ${PROFILES_TO_COPY}; do \
fn=$$(basename $$profile); \
rm -f ${PROFILES_SOURCE}/local/$$fn; \
done; \
-rm -f $(NAME)-$(VERSION)*.tar.gz Make.rules ${LOCAL_ADDITIONS}
ifndef VERBOSE
Q=@