This commit is contained in:
2026-08-06 00:29:37 +02:00
parent 31d458f8b7
commit fedc18c3ca
19 changed files with 779 additions and 131 deletions

24
hGameTest/Makefile Normal file
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