forked from vitrine/wmaker
32 lines
469 B
Makefile
32 lines
469 B
Makefile
AUTOMAKE_OPTIONS =
|
|
|
|
RUST_SOURCES = \
|
|
src/array.rs \
|
|
src/bag.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/notification.rs \
|
|
src/prop_list.rs \
|
|
src/string.rs
|
|
src/tree.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
|