Files
go-winrt/Makefile
Alex Savin 0a314257f8 Refactor import paths to use the new repository location for go-winrt
- Updated import paths in multiple files to point to the new repository at git.savin.nyc/alex/go-winrt.
- Removed old import paths referencing saltosystems/winrt-go.
- Ensured consistency across all affected files in the Bluetooth Generic Attribute Profile and Foundation packages.
2025-08-22 17:52:08 -04:00

39 lines
730 B
Makefile

PACKAGE = git.savin.nyc/alex/go-winrt
PKG ?= ./...
APP ?= winrt-go-gen
BUILD_TAGS ?=
include .go-builder/Makefile
.PHONY: prepare
prepare: $(prepare_targets)
.PHONY: sanity-check
sanity-check: $(sanity_check_targets) check-generated
.PHONY: build
build: $(build_targets)
.PHONY: test
test: $(test_targets) go-test
.PHONY: release
release: $(release_targets)
.PHONY: clean
clean: $(clean_targets)
.PHONY: gen-files
gen-files:
rm -rf $(CURDIR)/windows
go generate git.savin.nyc/alex/go-winrt/...
.PHONY: check-generated
check-generated: export WINRT_GO_GEN_VALIDATE=1
check-generated:
go generate git.savin.nyc/alex/go-winrt/...
.PHONY: go-test
go-test:
go test git.savin.nyc/alex/go-winrt/...