mirror of https://github.com/0intro/wmii
30 lines
417 B
Makefile
30 lines
417 B
Makefile
ROOT=.
|
|
include ${ROOT}/mk/hdr.mk
|
|
|
|
PDIRS = \
|
|
cmd \
|
|
libwmii_hack \
|
|
rc \
|
|
man
|
|
|
|
DIRS = \
|
|
libbio \
|
|
libfmt \
|
|
libregexp \
|
|
libutf \
|
|
${PDIRS}
|
|
|
|
config:
|
|
ROOT="${ROOT}" ${ROOT}/util/genconfig
|
|
|
|
deb-dep:
|
|
apt-get -qq install build-essential debhelper libxext-dev x11proto-xext-dev libx11-dev libxrandr-dev
|
|
|
|
deb:
|
|
dpkg-buildpackage -rfakeroot
|
|
|
|
include ${ROOT}/mk/dir.mk
|
|
INSTDIRS = ${PDIRS}
|
|
.PHONY: config
|
|
|