view client/Makefile.build @ 191:01c5794608e0

Added simple makefiles to build back end and client.
author Sascha Wilde <wilde@intevation.de>
date Fri, 20 Jul 2018 17:41:44 +0200
parents
children 02082327f1e2
line wrap: on
line source

#-*-makefile-*-
# Authors: Sascha Wilde <wilde@intevation.de>

.PHONY: all dependencies clean

all:	dependencies .env
	yarn build

dependencies:
	yarn install

.env:
	cp .env.sample $@

clean:
	rm -rf ../web