diff --git a/Makefile b/Makefile index 0ef9489a0..81bd6183b 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /usr/bin/env bash .DEFAULT_GOAL := help -.PHONY: help install build build-core test typecheck native clean +.PHONY: help install build build-core test typecheck native clean sf help: @printf "Available targets:\n" @@ -13,6 +13,7 @@ help: @printf " typecheck Run TypeScript type checking\n" @printf " native Build native components\n" @printf " clean Remove generated build outputs\n" + @printf " sf Run SF from source (passes args via ARGS=...)\n" install: npm install @@ -34,3 +35,6 @@ native: clean: rm -rf dist dist-test + +sf: + ./bin/sf-from-source $(ARGS)