This is done to help potential dependents reduce download sizes and only download what they need.
13 lines
223 B
Makefile
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)
|