2023-12-15 10:30:18 -05:00

16 lines
228 B
Makefile

IP_ADDR = allpawcare.com
PUBLIC_DIR = public
BUILD_SCRIPT = scripts/build.sh
.PHONY: all
all: clean
.PHONY: clean-public-dir
clean-public-dir:
rm -rf ${PUBLIC_DIR}/*
.PHONY: build
build: clean-public-dir
./${BUILD_SCRIPT}