xbattmon

simple battery monitor for X
git clone git://git.2f30.org/xbattmon
Log | Files | Refs | README | LICENSE

commit 3ff02bce19f468f0497752b0bf8354a9bb9953c7
parent 995f80c64f7abb4c2801f8580b47463cccae7561
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 12 Sep 2018 18:25:27 +0200

Link os-specific mk files to config.os.mk at configure-time

Diffstat:
MMakefile | 2+-
Mconfigure | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -2,7 +2,7 @@ VERSION = 1.1 -include config.mk +include config.os.mk OBJ = strtonum.o xbattmon.o BIN = xbattmon diff --git a/configure b/configure @@ -2,13 +2,13 @@ case `uname` in OpenBSD) - ln -sf config.bsd.mk config.mk + ln -sf config.bsd.mk config.os.mk ;; DragonFly) - ln -sf config.dfly.mk config.mk + ln -sf config.dfly.mk config.os.mk ;; Linux) - ln -sf config.linux.mk config.mk + ln -sf config.linux.mk config.os.mk ;; *) echo Unsupported system 1>&2