Update README

This commit is contained in:
2025-12-20 01:19:54 +01:00
parent 92ce48997d
commit 97b6934024
2 changed files with 17 additions and 3 deletions

View File

@@ -18,11 +18,13 @@ CFLAGS := $(CFLAGS.$(CC)) $(CFLAGS.$(CC).$(BUILD))
all: tests
wasm: chess.wasm
codegen: codegen.c
$(CC) -o $@ $(CFLAGS) $^
wasm: wasm-compat.c
$(CC) -DWASM -o chess.wasm wasm-compat.c $(CFLAGS.$(CC)) $(CFLAGS.$(CC).wasm)
chess.wasm: wasm-compat.c
$(CC) -DWASM -o $@ wasm-compat.c $(CFLAGS.$(CC)) $(CFLAGS.$(CC).wasm)
mbb_rook.h: codegen
./codegen