mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-01 20:10:55 +01:00
28 lines
568 B
Makefile
28 lines
568 B
Makefile
SUBDIRS=auth editorial_model leapi plugin settings utils plugins
|
|
EXTRA_DIST = plugins
|
|
lodel_PYTHON = *.py
|
|
CLEANFILES = buildconf.py
|
|
|
|
|
|
all-local: buildconf.py
|
|
|
|
lodeldir=$(pkgpythondir)/
|
|
|
|
gitclean:
|
|
-rm Makefile Makefile.in
|
|
|
|
logdir = $(localstatedir)/log/lodel2/
|
|
|
|
do_subst = sed -e 's,\[@\]LODEL2_VARDIR\[@\],$(localstatedir)/lodel2/,g' \
|
|
-e 's,\[@\]LODEL2_LOGDIR\[@\],$(logdir),g'
|
|
|
|
|
|
install-data-hook:
|
|
-mkdir -p ${DESTDIR}$(logdir)
|
|
|
|
uninstall-hook:
|
|
-rmdir ${DESTDIR}$(logdir)
|
|
|
|
buildconf.py: buildconf.py.am
|
|
$(do_subst) < $(srcdir)/buildconf.py.am > buildconf.py
|
|
|