#!/usr/bin/env make

all:

pre:
	mkdir ./bld/out
	mkdir ./bld/out/style
	INSTALL_PURGECSS="$(shell npm i -g purgecss)"
	RUN_PURGECSS="$(shell npx purgecss --content ./src/index.html --css ./src/style/css/full.css --output ./bld/out/style/css/full.css)"

clean:
	rm -rf ./bld/out
	rm -rf ./package.json ./package-lock.json
	rm -rf ./node_modules

linux:
	make -f ./bld/make/makefile.linux

macos:
	make -f ./bld/make/makefile.macos

windows:
	make -f ./bld/make/makefile.windows
