mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-21 20:06:46 +01:00
9 lines
166 B
Makefile
9 lines
166 B
Makefile
|
PREFIX ?= /usr/local
|
||
|
BUILD_DIR = build/$(PREFIX)/share/man
|
||
|
|
||
|
man:
|
||
|
mkdir -vp $(BUILD_DIR)
|
||
|
chainlib-man.py -b 0xbf -v -n eth-monitor -d $(BUILD_DIR)/ man
|
||
|
|
||
|
.PHONY: man
|