mirror of
https://github.com/lisanet/PiShrink-macOS.git
synced 2026-02-18 02:55:52 +00:00
20 lines
436 B
Makefile
20 lines
436 B
Makefile
# Makefile to easily build all needed tools
|
|
|
|
BINS = e2fsck resize2fs tune2fs
|
|
|
|
$(BINS):
|
|
./make_e2fstools
|
|
|
|
clean:
|
|
rm -f $(BINS)
|
|
|
|
install:
|
|
install -d /usr/local/bin
|
|
install -m 755 e2fsck /usr/local/bin
|
|
install -m 755 resize2fs /usr/local/bin
|
|
install -m 755 tune2fs /usr/local/bin
|
|
install -m 755 pishrink /usr/local/bin
|
|
|
|
uninstall:
|
|
rm -f /usr/local/bin/e2fsck /usr/local/bin/resize2fs /usr/local/bin/tune2fs /usr/local/bin/pishrink
|