make compile as default when no target is specified
This commit is contained in:
parent
baaffb9da1
commit
afa87c2cf4
13
Makefile
13
Makefile
@ -9,6 +9,12 @@ git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git
|
||||
|
||||
include .config.mk
|
||||
|
||||
.PHONY: compile
|
||||
compile:
|
||||
pnpm install -r --frozen-lockfile
|
||||
pnpm run compile
|
||||
|
||||
|
||||
.PHONY: dist
|
||||
dist:
|
||||
$(git-archive-all) \
|
||||
@ -41,11 +47,6 @@ clean:
|
||||
submodules-update:
|
||||
git submodule update --recursive --remote
|
||||
|
||||
.PHONY: compile
|
||||
compile:
|
||||
pnpm install -r --frozen-lockfile
|
||||
pnpm run compile
|
||||
|
||||
.PHONY: check
|
||||
check:
|
||||
pnpm install -r --frozen-lockfile
|
||||
@ -88,5 +89,5 @@ lint:
|
||||
./node_modules/.bin/eslint --ext '.js,.ts,.tsx' 'src'
|
||||
|
||||
|
||||
install:
|
||||
install: compile
|
||||
@echo Please run \'make install\' from one of the directories in packages/\'
|
||||
|
Loading…
Reference in New Issue
Block a user