﻿CSS_INPUT=styles/tailwind.css
CSS_OUTPUT=public_html/assets/styles.css

.PHONY: css serve lint

css:
	npx tailwindcss -i $(CSS_INPUT) -o $(CSS_OUTPUT) --minify

serve:
	php -S localhost:8000 -t public_html

lint:
	php -l public_html/api/*.php