This commit is contained in:
q3aql 2021-03-22 12:39:28 +01:00
parent d7b5c714dc
commit b5078e0a4e

15
Makefile Executable file
View File

@ -0,0 +1,15 @@
#####################################
# Installing defragfs/fragmentation #
#####################################
PREFIX=/usr
install:
cp -rf src/defragfs $(PREFIX)/bin/defragfs
chmod +x $(PREFIX)/bin/defragfs
cp -rf src/fragmentation $(PREFIX)/bin/fragmentation
chmod +x $(PREFIX)/bin/fragmentation
uninstall:
rm -rf $(PREFIX)/bin/defragfs
rm -rf $(PREFIX)/bin/fragmentation