Created
July 5, 2020 00:02
-
-
Save fakenickels/97e704503810450d9973c32a527c47bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ifeq ($(OS), Windows_NT) | |
detected_OS := Windows | |
else | |
detected_OS := $(shell sh -c 'uname 2>/dev/null || echo Unknown') | |
endif | |
ifeq ($(detected_OS), Windows) | |
BSB := ./node_modules/bs-platform/win32/bsb.exe | |
endif | |
ifeq ($(detected_OS), Linux) | |
BSB := ./node_modules/bs-platform/linux/bsb.exe | |
endif | |
ifeq ($(detected_OS), Darwin) | |
BSB := ./node_modules/bs-platform/darwin/bsb.exe | |
endif | |
BSEXTENSIONS := "ml,mli,re,rei" | |
BSB_ARGS := -make-world | |
SOURCE_DIRS_JSON := lib/bs/.sourcedirs.json | |
BSDIRS = "$(shell jq -r 'include "./dirs"; dirs' $(SOURCE_DIRS_JSON))" | |
all: serve | |
serve: | |
trap 'kill %1' INT TERM | |
# BuckleScript doesn't like being run first. | |
yarn workspace app start & $(MAKE) watch | |
$(SOURCE_DIRS_JSON): bsconfig.json | |
$(BSB) -install | |
bs: | |
$(BSB) $(BSB_ARGS) 2>/dev/null || echo Hang | |
watch: bs | |
yarn redemon --paths=$(BSDIRS) --extensions=$(BSEXTENSIONS) $(MAKE) bs | |
print-%: ; @echo $*=$($*) | |
clean: | |
$(BSB) -clean-world | |
.PHONY: bs bsdirs all clean watch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment