forked from vitrine/wmaker
This tweaks the hashtable API, and it is incomplete because the WUtil proplist impl depends heavily on a feature of the old API that is being discontinued. Moving the proplist code into Rust is our next objective.
28 lines
402 B
Makefile
28 lines
402 B
Makefile
AUTOMAKE_OPTIONS =
|
|
|
|
RUST_SOURCES = \
|
|
src/array.rs \
|
|
src/data.rs \
|
|
src/defines.c \
|
|
src/defines.rs \
|
|
src/find_file.rs \
|
|
src/hash_table.rs \
|
|
src/lib.rs \
|
|
src/memory.rs \
|
|
src/prop_list.rs
|
|
|
|
RUST_EXTRA = \
|
|
Cargo.lock \
|
|
Cargo.toml
|
|
|
|
target/debug/libwutil_rs.a: $(RUST_SOURCES) $(RUST_EXTRA)
|
|
$(CARGO) build
|
|
|
|
check-local:
|
|
$(CARGO) test
|
|
|
|
clean-local:
|
|
$(CARGO) clean
|
|
|
|
all: target/debug/libwutil_rs.a
|