blob: fc75d466d7569af7b0af019409050602dff40c95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
powxy: *.go version.go wasm/solver.wasm
go build -o powxy
version.go:
printf 'package main\n\nfunc init() {\n\tglobal.Version = "%s"\n}\n' $(shell git describe --tags --always --dirty) > $@
wasm/solver.wasm: wasm/solver.c wasm/sha256.c wasm/sha256.h
clang --target=wasm32 -nostdlib -Wl,--no-entry -Wl,--export-all -o wasm/solver.wasm wasm/solver.c wasm/sha256.c
.PHONY: version.go
|