wzrd

An ICCCM & EWMH compliant X11 reparenting, dynamic window manager, written in Rust
git clone git://git.deurzen.net/wzrd
Log | Files | Refs | LICENSE

Makefile (368B)


      1 all: build
      2 
      3 build: tags
      4 	cargo build
      5 
      6 test:
      7 	cargo test
      8 
      9 debug: build
     10 	./launch
     11 
     12 release:
     13 	RUSTFLAGS="--emit=asm" cargo build --release
     14 
     15 install:
     16 	install ./target/release/wzrd /usr/local/bin/wzrd
     17 
     18 .PHONY: tags
     19 tags:
     20 	ctags -R --exclude=.git --exclude=target --fields=+iaS --extras=+q .
     21 
     22 .PHONY: format
     23 format:
     24 	@cargo +nightly fmt
     25 
     26 .PHONY: clean
     27 clean:
     28 	@cargo clean