unrealxr/Makefile
imterah 77792a82a6
chore: Seperate Go modules into seperate directories
This is done to help potential dependents reduce download sizes and only
download what they need.
2025-06-26 18:57:29 -04:00

13 lines
223 B
Makefile

APP_DIR := ./app
OUTPUT := ./uxr
TAGS := xreal noaudio drm drm_leasing drm_disable_input
.PHONY: all build clean
all: build
build:
cd $(APP_DIR) && go build -v -tags '$(TAGS)' -o ../$(OUTPUT) .
clean:
rm -f $(OUTPUT)