summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index aa2e1dc..0565e4b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -3,6 +3,7 @@ INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL) -m 644
prefix = @prefix@
srcdir = @srcdir@
+SUBDIRS = talerbackoffice/backoffice/templates
script_templates = taler-merchant-backoffice backoffice.wsgi
templates = Makefile $(script_templates)
@@ -10,9 +11,13 @@ ava = js/node_modules/.bin/ava
edit = sed -e 's|@prefix[@]|$(prefix)|g'
.PHONY: all
-all: $(templates)
+all: $(SUBDIRS) $(templates)
cd talerbackoffice/backoffice/static/web-common && make && cd -
+.PHONY: $(SUBDIRS)
+$(SUBDIRS):
+ $(MAKE) -C $@
+
Makefile: Makefile.in
./config.status $@