1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
package = changeup modules = __init__.py install-data-local: $(mkdir_p) $(DESTDIR)$(pythondir)/$(package); \ for module in $(pyfiles); do \ $(install_sh_DATA) $$module $(DESTDIR)$(pythondir)/$(package); \ done uninstall-local: for module in $(modules); do \ rm -f $(DESTDIR)$(pythondir)/$(package)/$$module; \ done -rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(pythondir)/$(package) CLEANFILES = *.pyc MAINTAINERCLEANFILES = Makefile.in |