blob: 8b81d00b003c44e13b92372406335c3131b8b618 (
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 static/*
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
|