Moving experimental-bootstrap.sh back to bootstrap.sh
[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
0a2eecf8 67
0a2eecf8 68else
07778a69
CAW
69# --without-virtualenv must have been passed in... don't build
70# a local virtualenv or use such commands
71maybe_venved =
72maybe_venved_python = $(PYTHON)
73# No need for commands to build virtualenv as a dependency!
74maybe_venv_dep =
0a2eecf8 75endif
07778a69 76
07778a69
CAW
77.PHONY: all install uninstall distclean info install-html html \
78install-pdf pdf install-dvi dvi install-ps ps clean dist check \
79installdirs i18n virtualenv
80# update postgresql
81
82all: develop
83
b2624eb0 84develop: $(maybe_venv_dep) i18n paste.ini mediagoblin.ini
adecace3 85
86f89fd0 86# NEVER clobber a user's mediagoblin.ini once they've defined it
b2624eb0
CAW
87mediagoblin.ini:
88 cp --no-clobber mediagoblin.example.ini mediagoblin.ini
89
90# We just symlink the mediagoblin from the appropriate python version
adecace3
CAW
91paste.ini:
92ifeq ($(USE_PYTHON3),yes)
93 -ln -s paste.py3.ini paste.ini
94else
95 -ln -s paste.py2.ini paste.ini
96endif
07778a69 97
96f9c530
CAW
98# base-configs: paste.ini mediagoblin.example.ini
99
07778a69
CAW
100install: installdirs
101 $(maybe_venved_python) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix)
102
103
104i18n: $(maybe_venv_dep)
105 $(maybe_venved)pybabel compile -D mediagoblin -d mediagoblin/i18n/
106
107
0a2eecf8 108ifneq ($(VIRTUALENV),no)
07778a69
CAW
109./bin/python:
110 rm -f ./bin/python
111 virtualenv --system-site-packages .
112 ./bin/python setup.py develop --upgrade
0a2eecf8 113
07778a69 114virtualenv: bin/python
96f9c530
CAW
115
116clean-virtualenv:
117 rm -rf ./bin/
118 rm -rf ./lib/
07778a69 119endif
0a2eecf8
BI
120
121# setup.py doesn't (yet) support an uninstall command, so until it does, you
122# must manually remove everything that was installed here. The following example
123# should remove a basic package installed via setup.py, but please double- and
124# triple-check it so that you don't remove something you shouldn't!
125# Be sure to remove any extra files you install, such as binaries or documentation!
a9dc855a 126#
297a262c 127# uninstall:
a9dc855a
CAW
128# rm -rvf $(pkgpythondir)
129# rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info
130#
0a2eecf8 131
86f89fd0 132
0a2eecf8 133clean:
86f89fd0
CAW
134 @echo "No rule to clean house, yet."
135
136
137# We don't know what this does yet.
138# Originally:
139## Just use the usual setup.py clean command
140#clean:
141# $(maybe_venved_python) setup.py clean
142
0a2eecf8
BI
143
144
145# Clean up the output of configure
146distclean:
147 rm -v $(srcdir)/config.log
148 rm -v $(srcdir)/config.status
149 rm -rvf $(srcdir)/autom4te.cache
e4801f4d 150 rm -v $(srcdir)/aclocal.m4
0a2eecf8 151 rm -v $(srcdir)/Makefile
96f9c530
CAW
152 rm -v $(srcdir)/env
153
0a2eecf8
BI
154
155# You can either use the setup.py sdist command or you can roll your own here
156dist:
07778a69 157# $(maybe_venved_python) setup.py sdist
0a2eecf8
BI
158 mkdir $(PACKAGE_DISTNAME)
159 cp -r $(DISTFILES) $(PACKAGE_DISTNAME)
160 tar -czf $(PACKAGE_DISTNAME).tar.gz $(PACKAGE_DISTNAME)
161 rm -rf $(PACKAGE_DISTNAME)
162
163# Use the setup.py check command
164check:
07778a69 165 $(maybe_venved_python) setup.py check
0a2eecf8
BI
166
167# setup.py might complain if a directory doesn't exist so just in case, make the directory
168# here
169installdirs:
d45673c0 170 $(MKDIR_P) $(DESTDIR)$(prefix)
0a2eecf8 171
07778a69
CAW
172# # Set up PostgreSQL
173# postgresql:
174# sudo -u $(POSTGRES) createuser mediagoblin
175# sudo -u $(POSTGRES) createdb -E UNICODE -O mediagoblin mediagoblin
0a2eecf8 176
07778a69
CAW
177# update:
178# ifneq ($(VIRTUALENV),no)
179# $(prefix)/bin/python $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
180# else
181# $(PYTHON) $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
182# endif
183# $(prefix)/bin/gmg dbupdate
0a2eecf8
BI
184
185# The following show how to install documentation. In this example,
186# docs are built from a separate Makefile contained in the docs
187# directory which uses the SPHINXBUILD variable to store the location
188# of the sphinx-build (Python doc tool) binary to use.
189
190$(DESTDIR)$(infodir)/mediagoblin.info: docs/build/texinfo/mediagoblin.info
191 $(POST_INSTALL)
192 $(INSTALL_DATA) @< $(DESTDIR)$@
193 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then
194 install-info --dir-file=$(DESTDIR)$(infodir)/dir \
195 $(DESTDIR)$(infodir)/foo.info;
196 else true; fi
197
198info: docs/build/texinfo/mediagoblin.info
199
200docs/build/texinfo/mediagoblin.info: $(wildcard docs/source/*)
201ifneq ($(SPHINXBUILD),no)
202 $(MAKE) -C docs info SPHINXBUILD=$(SPHINXBUILD)
203endif
204
205
206install-html: html installdirs
207 $(INSTALL_DATA) docs/build/html/* $(DESTDIR)$(htmldir)
208
209html: docs/build/html/index.html
210
211docs/build/html/index.html: $(wildcard $(srcdir)/docs/source/*)
212ifneq ($(SPHINXBUILD),no)
213 $(MAKE) -C docs html SPHINXBUILD=$(SPHINXBUILD)
214endif
215
216
217install-pdf: pdf installdirs
218 $(INSTALL_DATA) docs/build/latex/mediagoblin.pdf $(DESTDIR)$(pdfdir)
219
220pdf: docs/build/latex/mediagoblin.pdf
221
222docs/build/latex/mediagoblin.pdf: $(wildcard $(srcdir)/docs/source/*)
223ifneq ($(SPHINXBUILD),no)
224 $(MAKE) -C docs latexpdf SPHINXBUILD=$(SPHINXBUILD)
225endif
226
227
07778a69
CAW
228# Targets that don't seem supported?
229
0a2eecf8
BI
230install-dvi:
231
232dvi:
233
234install-ps:
235
236ps:
237
238