summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9f122cdb13462f41baa866d3c5ee1f063c7a85e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: default backend frontend

default: backend tmpl frontend

backend:
	make -C backend

tmpl:
	make -C tmpl

frontend:
	make -C frontend