added makefile

This commit is contained in:
2022-02-19 21:48:34 +01:00
parent fe600cbf6b
commit 0812b43bb8
3 changed files with 22 additions and 2 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
BIN_NAME := Haxe.lua
MINIFYD_NAME := Haxe.min.lua
BUILD_DIR := build
BIN_PATH := $(BUILD_DIR)/$(BIN_NAME)
MIN_PATH := $(BUILD_DIR)/$(MINIFYD_NAME)
all: clean $(MIN_PATH)
$(BIN_PATH): $(shell find src -name '*.hx')
haxe build.hxml --lua $@
$(MIN_PATH): $(BIN_PATH)
node minify.js $@
deps: package.json build.hxml
haxelib install all --always && yarn install
clean:
rm -rf $(BUILD_DIR)