Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/nextcloud/twofactor_u2f.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcb1a7074a42b8e6bd36d532cb0d2fafeefdd55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile for building the project

all: install

clean:
	rm -rf vendor
	rm -rf node_modules
	rm -rf js/build

install:
	composer install --dev
	npm install
	npm run build