From 0945eb2b941e9888e7c8d47e12edd04baa7e20a4 Mon Sep 17 00:00:00 2001 From: Simone Karin Lehmann Date: Tue, 13 Mar 2018 22:43:49 +0100 Subject: [PATCH] add truncate to Makefile, add uninstall target to Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac3be3d..9936c43 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile to easily build all needed tools -BINS = e2fsck resize2fs tune2fs +BINS = e2fsck resize2fs tune2fs truncate $(BINS): ./make_e2fstools @@ -14,3 +14,7 @@ install: install -m 755 resize2fs /usr/local/bin install -m 755 tune2fs /usr/local/bin install -m 755 pishrink /usr/local/bin + install -m 755 truncate /usr/local/bin + +uninstall: + rm -f /usr/local/bin/e2fsck /usr/local/bin/resize2fs /usr/local/bin/tune2fs /usr/local/bin/pishrink /usr/local/bin/truncate