From 47bedadb4ecfd0740726bc21ecbfb25fd8802abc Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Fri, 24 Nov 2017 17:26:37 +0100 Subject: auto{make,conf} --- Makefile.in | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Makefile.in (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..8504506 --- /dev/null +++ b/Makefile.in @@ -0,0 +1,52 @@ +INSTALL = install +INSTALL_PROGRAM = $(INSTALL) +INSTALL_DATA = $(INSTALL) -m 644 +prefix = @prefix@ +srcdir = @srcdir@ + +script_templates = taler-merchant-blog frontend-blog.wsgi +templates = Makefile $(script_templates) + +edit = sed -e 's|@prefix[@]|$(prefix)|g' + +.PHONY: all +all: $(templates) + cd talerblog/blog/static/web-common && make && cd - + +Makefile: Makefile.in + ./config.status $@ + +$(script_templates): %: Makefile %.in + rm -f $@ $@.tmp + $(edit) '$(srcdir)/$@.in' >$@.tmp + mv $@.tmp $@ + + +.PHONY: install-data +install-data: $(templates) + @$(INSTALL_DATA) -Dt $(prefix)/share/taler/ frontend-blog.wsgi + +# @test -n "$$(ls -A talerbank/app/static/web-common/)" || \ +# (echo "please check out git submodules"; exit 1) + + + +# link package under prefix to source tree +.PHONY: devinstall +devinstall: $(templates) install-data + @pip3 install -e . --install-option="--prefix=@prefix@" + + +# install into prefix +.PHONY: install +install: $(templates) install-data + @pip3 install . --install-option="--prefix=@prefix@" + @# force update when sources changed + @pip3 install . --install-option="--prefix=@prefix@" --upgrade --no-deps + cd talerblog/blog/static/web-common && make install && cd - + +# run testcases +.PHONY: check +check: + @export TALER_CONFIG_FILE=@abs_srcdir@/talersurvey/tests.conf; \ + python3 talerblog/tests.py -- cgit v1.2.3