chore: Get raylib POC working
This commit is contained in:
parent
b1c83dbf69
commit
6d5444a31c
7 changed files with 47 additions and 5 deletions
13
Makefile
Normal file
13
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue