Makefile: default port add PHONY rules

This commit is contained in:
Raphaël Jakse 2020-05-16 14:03:08 +02:00
parent c6060a685e
commit e343f38e5d
1 changed files with 6 additions and 0 deletions

View File

@ -1,11 +1,17 @@
# -*- Makefile -*-
PORT = 3000
ESLINT?=eslint
ifeq (, $(shell which $(firstword ${ESLINT})))
ESLINT?=npx eslint
endif
.PHONY: all help lang start-dev-server
all: lang
help:
@echo make lang: build translation files
@echo make eslint: use ESLint to check code standard conformence