From 50502742e55ede71db9cf9ba29a93e5aabc547c9 Mon Sep 17 00:00:00 2001 From: Tobiasz Laskowski Date: Wed, 11 Sep 2024 08:26:36 +0100 Subject: [PATCH] Include hlmem when packaging hashlink library --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 71bab1ef5..bd9d060f5 100644 --- a/Makefile +++ b/Makefile @@ -247,13 +247,13 @@ ifeq ($(HLIB),directx) HLPACK=dx else ifeq ($(HLIB),hashlink) HLDIR=other/haxelib -HLPACK=templates +HLPACK=templates hlmem memory.hxml Run.hx endif release_haxelib_package: rm -rf $(HLIB)_release mkdir $(HLIB)_release - (cd $(HLDIR) && cp -R $(HLPACK) *.h *.c* *.hx haxelib.json $(CURDIR)/$(HLIB)_release | true) + (cd $(HLDIR) && cp -R $(HLPACK) *.h *.c* haxelib.json $(CURDIR)/$(HLIB)_release | true) zip -r $(HLIB).zip $(HLIB)_release haxelib submit $(HLIB).zip rm -rf $(HLIB)_release