fixed bootstrapping and asset handling

This commit is contained in:
2025-04-11 23:47:07 +02:00
parent f4bbbb9454
commit d73b8bb02e
15 changed files with 1432 additions and 318 deletions

View File

@@ -0,0 +1,24 @@
# Makefile for standalone OpenFL application
# Default target
.PHONY: all
all: build
# Build the application
.PHONY: build
build:
haxe build.hxml
# Run the compiled application
.PHONY: run
run:
bash -c "cd bin/cpp && ./ApplicationMain"
# Build and run the application
.PHONY: test
test: build run
# Clean build artifacts
.PHONY: clean
clean:
rm -rf bin/cpp