From bf7c9a153622a652a764df8409d7fa4affdc0ff6 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 17 Jun 2025 18:31:10 +0200 Subject: [PATCH] Makefile: remove some old files from clean target These have not been build or used for a very long time so they can be dropped IMO. Signed-off-by: Paul Holzinger --- Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Makefile b/Makefile index 15417fcf65..5287000483 100644 --- a/Makefile +++ b/Makefile @@ -1065,9 +1065,6 @@ uninstall: rm -f $(DESTDIR)$(BINDIR)/podman-remote # Remove related config files rm -f $(DESTDIR)${TMPFILESDIR}/podman.conf - rm -f $(DESTDIR)${SYSTEMDDIR}/io.podman.socket - rm -f $(DESTDIR)${USERSYSTEMDDIR}/io.podman.socket - rm -f $(DESTDIR)${SYSTEMDDIR}/io.podman.service rm -f $(DESTDIR)${SYSTEMDDIR}/podman.service rm -f $(DESTDIR)${SYSTEMDDIR}/podman.socket rm -f $(DESTDIR)${USERSYSTEMDDIR}/podman.socket @@ -1081,7 +1078,6 @@ clean-binaries: ## Remove platform/architecture specific binary files .PHONY: clean clean: clean-binaries ## Clean all make artifacts rm -rf \ - _output \ $(wildcard podman-*.msi) \ $(wildcard podman-remote*.zip) \ $(wildcard podman_tmp_*) \ @@ -1091,11 +1087,6 @@ clean: clean-binaries ## Clean all make artifacts test/goecho/goecho \ test/version/version \ test/__init__.py \ - test/testdata/redis-image \ - libpod/container_ffjson.go \ - libpod/pod_ffjson.go \ - libpod/container_easyjson.go \ - libpod/pod_easyjson.go \ docs/build \ .venv make -C docs clean