Skip to content

Instantly share code, notes, and snippets.

@manpages
Last active December 22, 2015 15:18
Show Gist options
  • Save manpages/6490946 to your computer and use it in GitHub Desktop.
Save manpages/6490946 to your computer and use it in GitHub Desktop.
Makefile for setuptools setup.py
.PHONY: install uninstall
install:
./setup.py install --record files.txt
uninstall:
cat files.txt | xargs rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment