chore: Get raylib POC working

This commit is contained in:
Tera << 8 2025-06-23 12:00:57 -04:00
parent b1c83dbf69
commit 6d5444a31c
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
7 changed files with 47 additions and 5 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
APP_DIR := ./app
OUTPUT := uxr
TAGS := drm drm_leasing drm_disable_input
.PHONY: all build clean
all: build
build:
go build -tags '$(TAGS)' -o $(OUTPUT) $(APP_DIR)
clean:
rm -f $(OUTPUT)