mirror of
https://github.com/0intro/wmii
synced 2024-11-26 15:49:37 +03:00
37d553300f
Improved focus semantics. /client/*/ctl slay command. Find unresponsive clients on kill. Draw titlebars of floating clients differently. Hack to set window properties of programs: wihack command/libwmii_hack.so library. Added wmii.rc, on which rc.wmii now depends. The usual cleanup.
19 lines
336 B
Makefile
19 lines
336 B
Makefile
PROGS = ${TARG:=.O}
|
|
|
|
all: $(OFILES) $(PROGS)
|
|
|
|
install: ${TARG:=.install}
|
|
uninstall: ${TARG:=.uninstall}
|
|
depend: ${OFILES:.o=.depend} ${TARG:=.depend}
|
|
clean: manyclean
|
|
|
|
printinstall:
|
|
echo 'Install directories:'
|
|
echo ' Bin: $(BIN)'
|
|
|
|
manyclean:
|
|
for i in ${TARG:=.o} ${TARG:=.O} $(OFILES); do \
|
|
rm -f $$i; \
|
|
done 2>/dev/null || true
|
|
|