# Makefile for yarn commands

# Define variables
YARN = yarn

.PHONY: all install build start

# Default target
all: install build start

# Install dependencies
install:
	$(YARN)

# Build the project
build:
	$(YARN) build

# Start the project
start:
	$(YARN) start