mirror of
https://github.com/0intro/wmii
synced 2024-11-25 07:09:38 +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.
21 lines
418 B
Makefile
21 lines
418 B
Makefile
all:
|
|
|
|
install: all
|
|
|
|
MANDIRS=$(MAN)/man1
|
|
mkdirs:
|
|
for i in $(BIN) $(ETC) $(LIBDIR) $(MANDIRS) $(INCLUDE) $(DIRS); do \
|
|
test -d $$i || echo MKDIR $$i; \
|
|
mkdir -pm 0755 $$i; \
|
|
done
|
|
|
|
cleandep:
|
|
echo CLEANDEP
|
|
rm .depend 2>/dev/null || true
|
|
|
|
DEP:=${shell if test -f .depend;then echo .depend;else echo /dev/null; fi}
|
|
DEP!=echo /dev/null
|
|
include $(DEP)
|
|
|
|
.PHONY: all options clean dist install uninstall depend cleandep
|