choose pybabel depending on whether one is available in the environment
[mediagoblin.git] / Makefile.in
CommitLineData
0a2eecf8
BI
1# Makefile.in
2#
3# Copyright © 2012, 2013 Brandon Invergo <brandon@invergo.net>
4#
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.
9
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
13DISTFILES = PKG-INFO Makefile.in configure setup.py install-sh
14
15DESTDIR =
16VPATH = @srcdir@
17PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
18PACKAGE_NAME = @PACKAGE_NAME@
19PACKAGE_STRING = @PACKAGE_STRING@
20PACKAGE_TARNAME = @PACKAGE_TARNAME@
21PACKAGE_DISTNAME = ${PACKAGE_NAME}-${PACKAGE_VERSION}
22PACKAGE_URL = @PACKAGE_URL@
23PACKAGE_VERSION = @PACKAGE_VERSION@
24PATH_SEPARATOR = @PATH_SEPARATOR@
25PYTHON = @PYTHON@
26VIRTUALENV = @VIRTUALENV@
0a2eecf8
BI
27SHELL = @SHELL@
28MKDIR_P = @MKDIR_P@
29INSTALL = @INSTALL@
30INSTALL_PROGRAM = @INSTALL_PROGRAM@
31INSTALL_DATA = @INSTALL_DATA@
32INSTALL_SCRIPT = @INSTALL_SCRIPT@
33docdir = @docdir@
34dvidir = @dvidir@
35exec_prefix = @exec_prefix@
36htmldir = @htmldir@
37includedir = @includedir@
38infodir = @infodir@
39prefix = @prefix@
40srcdir = @srcdir@
e56b493a 41abs_srcdir = @abs_srcdir@
0a2eecf8
BI
42datadir = @datadir@
43datarootdir = @datarootdir@
0a2eecf8
BI
44pkgdatadir = $(datadir)/@PACKAGE_NAME@
45pkgincludedir = $(includedir)/@PACKAGE_NAME@
0a2eecf8 46PYTHONPATH = $(pythondir)$(PATH_SEPARATOR)$(DESTDIR)$(pythondir)
65686465 47USE_PYTHON3 = @USE_PYTHON3@
0a2eecf8 48
96f9c530
CAW
49# pkgpythondir = @pkgpythondir@
50# pkgpyexecdir = @pkgpyexecdir@
51# pythondir = @pythondir@
52# pyexecdir = @pyexecdir@
53# SPHINXBUILD = @SPHINXBUILD@
54# POSTGRES = @POSTGRES@
55
56
07778a69
CAW
57# Maybe add a virtualenv prefix to a command
58ifneq ($(VIRTUALENV),no)
59# virtualenv specified to be included by config (default)
60# ... we only use virtualenv for local development, we don't
61# auto-deploy to it.
0a2eecf8 62
07778a69
CAW
63maybe_venved = ./bin/
64maybe_venved_python = ./bin/python
65# Yes, build the virtualenv as a dependency!
66maybe_venv_dep = ./bin/python
1da574c6
CAW
67# And to clean up!
68maybe_venv_clean = clean-virtualenv
0a2eecf8 69
0a2eecf8 70else
07778a69
CAW
71# --without-virtualenv must have been passed in... don't build
72# a local virtualenv or use such commands
73maybe_venved =
74maybe_venved_python = $(PYTHON)
75# No need for commands to build virtualenv as a dependency!
76maybe_venv_dep =
1da574c6
CAW
77# Nor to clean up!
78maybe_venv_clean =
0a2eecf8 79endif
07778a69 80
07778a69
CAW
81.PHONY: all install uninstall distclean info install-html html \
82install-pdf pdf install-dvi dvi install-ps ps clean dist check \
83installdirs i18n virtualenv
84# update postgresql
85
86all: develop
87
2b475821 88develop: $(maybe_venv_dep) i18n mediagoblin.ini
adecace3 89
86f89fd0 90# NEVER clobber a user's mediagoblin.ini once they've defined it
b2624eb0
CAW
91mediagoblin.ini:
92 cp --no-clobber mediagoblin.example.ini mediagoblin.ini
93
96f9c530
CAW
94# base-configs: paste.ini mediagoblin.example.ini
95
07778a69
CAW
96install: installdirs
97 $(maybe_venved_python) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix)
98
99
100i18n: $(maybe_venv_dep)
101 $(maybe_venved)pybabel compile -D mediagoblin -d mediagoblin/i18n/
102
103
0a2eecf8 104ifneq ($(VIRTUALENV),no)
07778a69
CAW
105./bin/python:
106 rm -f ./bin/python
1da574c6 107 virtualenv --system-site-packages --python=$(PYTHON) .
07778a69 108 ./bin/python setup.py develop --upgrade
0a2eecf8 109
07778a69 110virtualenv: bin/python
96f9c530
CAW
111
112clean-virtualenv:
113 rm -rf ./bin/
114 rm -rf ./lib/
90c2989b 115 rm -rf ./include/
07778a69 116endif
0a2eecf8
BI
117
118# setup.py doesn't (yet) support an uninstall command, so until it does, you
119# must manually remove everything that was installed here. The following example
120# should remove a basic package installed via setup.py, but please double- and
121# triple-check it so that you don't remove something you shouldn't!
122# Be sure to remove any extra files you install, such as binaries or documentation!
a9dc855a 123#
297a262c 124# uninstall:
a9dc855a
CAW
125# rm -rvf $(pkgpythondir)
126# rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info
127#
0a2eecf8 128
86f89fd0 129
0a2eecf8 130clean:
86f89fd0
CAW
131 @echo "No rule to clean house, yet."
132
133
134# We don't know what this does yet.
135# Originally:
136## Just use the usual setup.py clean command
137#clean:
138# $(maybe_venved_python) setup.py clean
139
0a2eecf8
BI
140
141
142# Clean up the output of configure
1da574c6
CAW
143distclean: $(maybe_venv_clean)
144 rm -vf $(srcdir)/config.log
145 rm -vf $(srcdir)/config.status
0a2eecf8 146 rm -rvf $(srcdir)/autom4te.cache
1da574c6
CAW
147 rm -vf $(srcdir)/aclocal.m4
148 rm -vf $(srcdir)/Makefile
96f9c530 149
0a2eecf8 150
2b475821
CAW
151###########################################################################
152# These things aren't really tested / supported yet.
153###########################################################################
154
155
156
0a2eecf8
BI
157# You can either use the setup.py sdist command or you can roll your own here
158dist:
07778a69 159# $(maybe_venved_python) setup.py sdist
0a2eecf8
BI
160 mkdir $(PACKAGE_DISTNAME)
161 cp -r $(DISTFILES) $(PACKAGE_DISTNAME)
162 tar -czf $(PACKAGE_DISTNAME).tar.gz $(PACKAGE_DISTNAME)
163 rm -rf $(PACKAGE_DISTNAME)
164
165# Use the setup.py check command
166check:
07778a69 167 $(maybe_venved_python) setup.py check
0a2eecf8
BI
168
169# setup.py might complain if a directory doesn't exist so just in case, make the directory
170# here
171installdirs:
d45673c0 172 $(MKDIR_P) $(DESTDIR)$(prefix)
0a2eecf8 173
07778a69
CAW
174# # Set up PostgreSQL
175# postgresql:
176# sudo -u $(POSTGRES) createuser mediagoblin
177# sudo -u $(POSTGRES) createdb -E UNICODE -O mediagoblin mediagoblin
0a2eecf8 178
07778a69
CAW
179# update:
180# ifneq ($(VIRTUALENV),no)
181# $(prefix)/bin/python $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
182# else
183# $(PYTHON) $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
184# endif
185# $(prefix)/bin/gmg dbupdate
0a2eecf8 186
2b475821
CAW
187######################
188# Needs to be updated?
189######################
190
0a2eecf8
BI
191# The following show how to install documentation. In this example,
192# docs are built from a separate Makefile contained in the docs
193# directory which uses the SPHINXBUILD variable to store the location
194# of the sphinx-build (Python doc tool) binary to use.
195
196$(DESTDIR)$(infodir)/mediagoblin.info: docs/build/texinfo/mediagoblin.info
197 $(POST_INSTALL)
198 $(INSTALL_DATA) @< $(DESTDIR)$@
199 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then
200 install-info --dir-file=$(DESTDIR)$(infodir)/dir \
201 $(DESTDIR)$(infodir)/foo.info;
202 else true; fi
203
204info: docs/build/texinfo/mediagoblin.info
205
206docs/build/texinfo/mediagoblin.info: $(wildcard docs/source/*)
207ifneq ($(SPHINXBUILD),no)
208 $(MAKE) -C docs info SPHINXBUILD=$(SPHINXBUILD)
209endif
210
211
212install-html: html installdirs
213 $(INSTALL_DATA) docs/build/html/* $(DESTDIR)$(htmldir)
214
215html: docs/build/html/index.html
216
217docs/build/html/index.html: $(wildcard $(srcdir)/docs/source/*)
218ifneq ($(SPHINXBUILD),no)
219 $(MAKE) -C docs html SPHINXBUILD=$(SPHINXBUILD)
220endif
221
222
223install-pdf: pdf installdirs
224 $(INSTALL_DATA) docs/build/latex/mediagoblin.pdf $(DESTDIR)$(pdfdir)
225
226pdf: docs/build/latex/mediagoblin.pdf
227
228docs/build/latex/mediagoblin.pdf: $(wildcard $(srcdir)/docs/source/*)
229ifneq ($(SPHINXBUILD),no)
230 $(MAKE) -C docs latexpdf SPHINXBUILD=$(SPHINXBUILD)
231endif
232
233
07778a69
CAW
234# Targets that don't seem supported?
235
0a2eecf8
BI
236install-dvi:
237
238dvi:
239
240install-ps:
241
242ps:
243
244