diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/Makefile.in b/Makefile.in index 7b21241f..713f26d6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -9,11 +9,11 @@ # without any warranty. # List whatever files you want to include in your source distribution here. -# You can include whole directories but note that *everything* under that +# You can include whole directories but note that *everything* under that # directory will be included DISTFILES = PKG-INFO Makefile.in configure setup.py install-sh -DESTDIR = +DESTDIR = VPATH = @srcdir@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ @@ -46,7 +46,7 @@ pkgdatadir = $(datadir)/@PACKAGE_NAME@ pkgincludedir = $(includedir)/@PACKAGE_NAME@ PYTHONPATH = $(pythondir)$(PATH_SEPARATOR)$(DESTDIR)$(pythondir) -EXTLIB_INSTALLS = extlib/jquery extlib/video.js extlib/leaflet +EXTLIB_INSTALLS = extlib/jquery extlib/leaflet # pkgpythondir = @pkgpythondir@ # pkgpyexecdir = @pkgpyexecdir@ @@ -75,14 +75,14 @@ else maybe_venved = maybe_venved_python = $(PYTHON) # No need for commands to build virtualenv as a dependency! -maybe_venv_dep = +maybe_venv_dep = # Nor to clean up! -maybe_venv_clean = +maybe_venv_clean = endif .PHONY: all install uninstall distclean info install-html html \ install-pdf pdf install-dvi dvi install-ps ps clean dist check \ -installdirs i18n virtualenv docs extlib +installdirs i18n virtualenv docs # update postgresql @@ -95,11 +95,6 @@ else cd docs && make html endif -# In the future we may provide more options than just npm/bower here -# eg, we may support guix updating. -extlib: - ./devtools/update_extlib.sh - develop: $(maybe_venv_dep) i18n mediagoblin.ini # NEVER clobber a user's mediagoblin.ini once they've defined it @@ -131,16 +126,16 @@ clean-virtualenv: rm -rf ./include/ endif -# setup.py doesn't (yet) support an uninstall command, so until it does, you +# setup.py doesn't (yet) support an uninstall command, so until it does, you # must manually remove everything that was installed here. The following example -# should remove a basic package installed via setup.py, but please double- and +# should remove a basic package installed via setup.py, but please double- and # triple-check it so that you don't remove something you shouldn't! # Be sure to remove any extra files you install, such as binaries or documentation! -# -# uninstall: +# +# uninstall: # rm -rvf $(pkgpythondir) # rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info -# +# # We don't know what this does yet. # Originally: @@ -163,7 +158,6 @@ distclean: $(maybe_venv_clean) rm -rvf $(srcdir)/autom4te.cache rm -vf $(srcdir)/aclocal.m4 rm -rf $(EXTLIB_INSTALLS) - rm -rf node_modules rm -vf $(srcdir)/Makefile check: |