lego/Makefile
2024-11-25 21:27:16 +01:00

15 lines
196 B
Makefile

DIR_SQL = PostgreSQL
DIR_BACK = back-end
BIN = prepare_dev
all: $(BIN)
prepare_dev:
cp $(DIR_BACK)/.env.example $(DIR_BACK)/.env
clean:
rm -f $(DIR_BACK)/.env
cd $(DIR_SQL) && make clean