3 # Copyright © 2012, 2013 Brandon Invergo <brandon@invergo.net>
5 # Copying and distribution of this file, with or without modification,
6 # are permitted in any medium without royalty provided the copyright
7 # notice and this notice are preserved. This file is offered as-is,
8 # without any warranty.
10 # List whatever files you want to include in your source distribution here.
11 # You can include whole directories but note that *everything* under that
12 # directory will be included
13 DISTFILES
= PKG-INFO Makefile.in configure setup.py install-sh
17 PACKAGE_BUGREPORT
= @PACKAGE_BUGREPORT@
18 PACKAGE_NAME
= @PACKAGE_NAME@
19 PACKAGE_STRING
= @PACKAGE_STRING@
20 PACKAGE_TARNAME
= @PACKAGE_TARNAME@
21 PACKAGE_DISTNAME
= ${PACKAGE_NAME}-${PACKAGE_VERSION}
22 PACKAGE_URL
= @PACKAGE_URL@
23 PACKAGE_VERSION
= @PACKAGE_VERSION@
24 PATH_SEPARATOR
= @PATH_SEPARATOR@
26 VIRTUALENV
= @VIRTUALENV@
30 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
31 INSTALL_DATA
= @INSTALL_DATA@
32 INSTALL_SCRIPT
= @INSTALL_SCRIPT@
35 exec_prefix = @
exec_prefix@
37 includedir = @
includedir@
41 abs_srcdir
= @abs_srcdir@
43 datarootdir
= @datarootdir@
44 pkgdatadir
= $(datadir)/@PACKAGE_NAME@
45 pkgincludedir
= $(includedir)/@PACKAGE_NAME@
46 PYTHONPATH
= $(pythondir
)$(PATH_SEPARATOR
)$(DESTDIR
)$(pythondir
)
47 USE_PYTHON3
= @USE_PYTHON3@
49 # pkgpythondir = @pkgpythondir@
50 # pkgpyexecdir = @pkgpyexecdir@
51 # pythondir = @pythondir@
52 # pyexecdir = @pyexecdir@
53 # SPHINXBUILD = @SPHINXBUILD@
54 # POSTGRES = @POSTGRES@
57 # Maybe add a virtualenv prefix to a command
58 ifneq ($(VIRTUALENV
),no
)
59 # virtualenv specified to be included by config (default)
60 # ... we only use virtualenv for local development, we don't
64 maybe_venved_python
= .
/bin
/python
65 # Yes, build the virtualenv as a dependency!
66 maybe_venv_dep
= .
/bin
/python
68 maybe_venv_clean
= clean-virtualenv
71 # --without-virtualenv must have been passed in... don't build
72 # a local virtualenv or use such commands
74 maybe_venved_python
= $(PYTHON
)
75 # No need for commands to build virtualenv as a dependency!
81 .PHONY
: all install uninstall distclean info install-html html \
82 install-pdf pdf install-dvi
dvi install-ps ps
clean dist check \
83 installdirs i18n virtualenv docs extlib
89 ifneq ($(VIRTUALENV
),no
)
91 source bin
/activate
&& cd docs
&& make html
96 # In the future we may provide more options than just npm/bower here
97 # eg, we may support guix updating.
99 .
/devtools
/update_extlib.sh
101 develop
: $(maybe_venv_dep
) i18n mediagoblin.ini
103 # NEVER clobber a user's mediagoblin.ini once they've defined it
105 cp
--no-clobber mediagoblin.example.ini mediagoblin.ini
107 # base-configs: paste.ini mediagoblin.example.ini
110 $(maybe_venved_python
) $(srcdir)/setup.py
install --prefix=$(DESTDIR
)$(prefix)
113 # In the future, maybe we can compile the individual .po files here?
114 i18n
: $(maybe_venv_dep
)
115 .
/devtools
/compile_translations.sh
118 ifneq ($(VIRTUALENV
),no
)
121 virtualenv
--system-site-packages
--python
=$(PYTHON
) .
122 .
/bin
/python setup.py develop
--upgrade
124 virtualenv
: bin
/python extlib
132 # setup.py doesn't (yet) support an uninstall command, so until it does, you
133 # must manually remove everything that was installed here. The following example
134 # should remove a basic package installed via setup.py, but please double- and
135 # triple-check it so that you don't remove something you shouldn't!
136 # Be sure to remove any extra files you install, such as binaries or documentation!
139 # rm -rvf $(pkgpythondir)
140 # rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info
145 @echo
"No rule to clean house, yet."
148 # We don't know what this does yet.
150 ## Just use the usual setup.py clean command
152 # $(maybe_venved_python) setup.py clean
156 # Clean up the output of configure
157 distclean: $(maybe_venv_clean
)
158 rm -vf
$(srcdir)/config.log
159 rm -vf
$(srcdir)/config.status
160 rm -rvf
$(srcdir)/autom4te.cache
161 rm -vf
$(srcdir)/aclocal.m4
162 rm -vf
$(srcdir)/Makefile
165 ###########################################################################
166 # These things aren't really tested / supported yet.
167 ###########################################################################
171 # You can either use the setup.py sdist command or you can roll your own here
173 # $(maybe_venved_python) setup.py sdist
174 mkdir
$(PACKAGE_DISTNAME
)
175 cp
-r
$(DISTFILES
) $(PACKAGE_DISTNAME
)
176 tar -czf
$(PACKAGE_DISTNAME
).
tar.gz
$(PACKAGE_DISTNAME
)
177 rm -rf
$(PACKAGE_DISTNAME
)
179 # Use the setup.py check command
181 $(maybe_venved_python
) setup.py
check
183 # setup.py might complain if a directory doesn't exist so just in case, make the directory
186 $(MKDIR_P
) $(DESTDIR
)$(prefix)
188 # # Set up PostgreSQL
190 # sudo -u $(POSTGRES) createuser mediagoblin
191 # sudo -u $(POSTGRES) createdb -E UNICODE -O mediagoblin mediagoblin
194 # ifneq ($(VIRTUALENV),no)
195 # $(prefix)/bin/python $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
197 # $(PYTHON) $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
199 # $(prefix)/bin/gmg dbupdate
201 ######################
202 # Needs to be updated?
203 ######################
205 # The following show how to install documentation. In this example,
206 # docs are built from a separate Makefile contained in the docs
207 # directory which uses the SPHINXBUILD variable to store the location
208 # of the sphinx-build (Python doc tool) binary to use.
210 $(DESTDIR
)$(infodir)/mediagoblin.
info: docs
/build
/texinfo
/mediagoblin.
info
212 $(INSTALL_DATA
) @
< $(DESTDIR
)$@
213 if
$(SHELL
) -c
'install-info --version' >/dev
/null
2>&1; then
214 install-info
--dir-file
=$(DESTDIR
)$(infodir)/dir \
215 $(DESTDIR
)$(infodir)/foo.
info;
218 info: docs
/build
/texinfo
/mediagoblin.
info
220 docs
/build
/texinfo
/mediagoblin.
info: $(wildcard docs
/source
/*)
221 ifneq ($(SPHINXBUILD
),no
)
222 $(MAKE
) -C docs
info SPHINXBUILD
=$(SPHINXBUILD
)
226 install-html
: html
installdirs
227 $(INSTALL_DATA
) docs
/build
/html
/* $(DESTDIR
)$(htmldir
)
229 html
: docs
/build
/html
/index.html
231 docs
/build
/html
/index.html
: $(wildcard $(srcdir)/docs
/source
/*)
232 ifneq ($(SPHINXBUILD
),no
)
233 $(MAKE
) -C docs html SPHINXBUILD
=$(SPHINXBUILD
)
237 install-pdf
: pdf
installdirs
238 $(INSTALL_DATA
) docs
/build
/latex
/mediagoblin.pdf
$(DESTDIR
)$(pdfdir
)
240 pdf
: docs
/build
/latex
/mediagoblin.pdf
242 docs
/build
/latex
/mediagoblin.pdf
: $(wildcard $(srcdir)/docs
/source
/*)
243 ifneq ($(SPHINXBUILD
),no
)
244 $(MAKE
) -C docs latexpdf SPHINXBUILD
=$(SPHINXBUILD
)
248 # Targets that don't seem supported?