Skip to content

Commit

Permalink
change make uninstall to use rm rf for removing a py lib dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tanelpoder committed Mar 15, 2021
1 parent 673e788 commit ad61a4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ install:
install -m 0644 lib/0xtools/argparse.py ${PREFIX}/lib/0xtools/argparse.py

uninstall:
rm -fv ${PREFIX}/bin/xcapture ${PREFIX}/bin/psn ${PREFIX}/bin/schedlat
rm -fv ${PREFIX}/lib/0xtools/proc.py ${PREFIX}/lib/0xtools/psnreport.py ${PREFIX}/lib/0xtools/argparse.py
rmdir -v ${PREFIX}/lib/0xtools
rm -fv ${PREFIX}/bin/xcapture ${PREFIX}/bin/psn ${PREFIX}/bin/schedlat
rm -fv ${PREFIX}/lib/0xtools/proc.py ${PREFIX}/lib/0xtools/psnreport.py ${PREFIX}/lib/0xtools/argparse.py
rm -rfv ${PREFIX}/lib/0xtools

clean:
rm -fv bin/xcapture

0 comments on commit ad61a4d

Please sign in to comment.