2016-06-27 06:49:51 +00:00
|
|
|
|
TOPDIR=$(shell pwd)
|
|
|
|
|
|
2010-09-22 22:12:48 +00:00
|
|
|
|
ifndef PREFIX
|
|
|
|
|
PREFIX=/usr
|
|
|
|
|
endif
|
2015-04-08 00:28:07 +00:00
|
|
|
|
ifndef MANPREFIX
|
|
|
|
|
MANPREFIX=$(PREFIX)
|
|
|
|
|
endif
|
2010-09-22 22:12:48 +00:00
|
|
|
|
ifndef SYSCONFDIR
|
|
|
|
|
ifeq ($(PREFIX),/usr)
|
|
|
|
|
SYSCONFDIR=/etc
|
|
|
|
|
else
|
|
|
|
|
SYSCONFDIR=$(PREFIX)/etc
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2017-09-18 06:30:48 +00:00
|
|
|
|
PKG_CONFIG ?= pkg-config
|
2009-01-25 22:18:25 +00:00
|
|
|
|
CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
|
2008-10-07 13:33:54 +00:00
|
|
|
|
CFLAGS+=-g
|
2009-04-17 11:31:53 +00:00
|
|
|
|
CFLAGS+=-std=gnu99
|
|
|
|
|
CFLAGS+=-pedantic
|
2011-07-13 14:18:09 +00:00
|
|
|
|
CPPFLAGS+=-DSYSCONFDIR=\"$(SYSCONFDIR)\"
|
2016-06-27 06:49:51 +00:00
|
|
|
|
CPPFLAGS+=-DVERSION=\"${I3STATUS_VERSION}\"
|
2010-07-20 17:30:27 +00:00
|
|
|
|
CFLAGS+=-Iinclude
|
2011-07-13 14:18:09 +00:00
|
|
|
|
LIBS+=-lconfuse
|
2012-03-25 18:55:55 +00:00
|
|
|
|
LIBS+=-lyajl
|
2015-03-11 16:29:32 +00:00
|
|
|
|
LIBS+=-lpulse
|
2015-10-12 07:44:13 +00:00
|
|
|
|
LIBS+=-lm
|
2016-01-12 13:35:02 +00:00
|
|
|
|
LIBS+=-lpthread
|
2008-10-07 13:33:54 +00:00
|
|
|
|
|
2016-06-27 06:49:51 +00:00
|
|
|
|
ifeq ($(wildcard .git),)
|
|
|
|
|
# not in git repository
|
2016-08-13 20:46:31 +00:00
|
|
|
|
VERSION := $(shell [ -f $(TOPDIR)/I3STATUS_VERSION ] && cat $(TOPDIR)/I3STATUS_VERSION | cut -d '-' -f 1)
|
2016-09-05 06:35:24 +00:00
|
|
|
|
I3STATUS_VERSION := '$(shell [ -f $(TOPDIR)/I3STATUS_VERSION ] && cat $(TOPDIR)/I3STATUS_VERSION)'
|
2016-06-27 06:49:51 +00:00
|
|
|
|
else
|
|
|
|
|
VERSION:=$(shell git describe --tags --abbrev=0)
|
|
|
|
|
I3STATUS_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))"
|
|
|
|
|
endif
|
2013-10-06 18:12:16 +00:00
|
|
|
|
OS:=$(shell uname)
|
2009-05-01 17:57:09 +00:00
|
|
|
|
|
2013-10-06 18:12:16 +00:00
|
|
|
|
ifeq ($(OS),Linux)
|
2011-07-13 14:18:09 +00:00
|
|
|
|
CPPFLAGS+=-DLINUX
|
|
|
|
|
CPPFLAGS+=-D_GNU_SOURCE
|
2017-09-18 06:30:48 +00:00
|
|
|
|
CFLAGS += $(shell $(PKG_CONFIG) --cflags libnl-genl-3.0)
|
|
|
|
|
LIBS += $(shell $(PKG_CONFIG) --libs libnl-genl-3.0)
|
2011-07-13 14:18:09 +00:00
|
|
|
|
LIBS+=-lasound
|
2009-01-25 19:50:02 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2013-10-06 18:12:16 +00:00
|
|
|
|
ifeq ($(OS),GNU/kFreeBSD)
|
2011-07-13 14:18:09 +00:00
|
|
|
|
LIBS+=-lbsd
|
2009-08-31 17:34:57 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2014-07-31 21:51:30 +00:00
|
|
|
|
ifneq (, $(filter $(OS), DragonFly FreeBSD OpenBSD))
|
2012-04-26 17:49:48 +00:00
|
|
|
|
CFLAGS+=-I/usr/local/include/
|
|
|
|
|
LDFLAGS+=-L/usr/local/lib/
|
2014-07-31 21:51:30 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2015-06-10 17:01:13 +00:00
|
|
|
|
ifeq ($(OS),NetBSD)
|
|
|
|
|
LIBS+=-lprop
|
2014-07-31 21:51:30 +00:00
|
|
|
|
endif
|
2013-10-06 18:12:16 +00:00
|
|
|
|
|
2012-11-14 01:29:55 +00:00
|
|
|
|
# This probably applies for any pkgsrc based system
|
2013-10-06 18:12:16 +00:00
|
|
|
|
ifneq (, $(filter $(OS), NetBSD DragonFly))
|
2012-11-14 01:29:55 +00:00
|
|
|
|
CFLAGS+=-I/usr/pkg/include/
|
|
|
|
|
LDFLAGS+=-L/usr/pkg/lib/
|
|
|
|
|
endif
|
|
|
|
|
|
2013-06-18 16:14:38 +00:00
|
|
|
|
V ?= 0
|
|
|
|
|
ifeq ($(V),0)
|
|
|
|
|
# Don’t print command lines which are run
|
|
|
|
|
.SILENT:
|
|
|
|
|
endif
|
2012-11-14 01:29:55 +00:00
|
|
|
|
|
2009-06-17 19:33:54 +00:00
|
|
|
|
CFLAGS+=$(EXTRA_CFLAGS)
|
2009-02-22 18:56:06 +00:00
|
|
|
|
|
2012-04-08 12:05:47 +00:00
|
|
|
|
# Fallback for libyajl 1 which did not include yajl_version.h. We need
|
|
|
|
|
# YAJL_MAJOR from that file to decide which code path should be used.
|
2012-04-30 11:51:18 +00:00
|
|
|
|
CFLAGS += -idirafter yajl-fallback
|
2012-04-08 12:05:47 +00:00
|
|
|
|
|
2017-01-21 14:33:39 +00:00
|
|
|
|
OBJS:=$(sort $(wildcard src/*.c *.c))
|
2009-10-11 20:11:09 +00:00
|
|
|
|
OBJS:=$(OBJS:.c=.o)
|
|
|
|
|
|
2015-07-30 23:51:40 +00:00
|
|
|
|
ifeq ($(OS),OpenBSD)
|
|
|
|
|
OBJS:=$(filter-out src/pulse.o, $(OBJS))
|
2016-01-12 13:35:02 +00:00
|
|
|
|
LIBS:=$(filter-out -lpulse, $(LIBS))
|
2015-07-30 23:51:40 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2013-01-13 13:18:13 +00:00
|
|
|
|
src/%.o: src/%.c include/i3status.h
|
2013-06-18 16:14:38 +00:00
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
|
2009-07-21 18:45:05 +00:00
|
|
|
|
@echo " CC $<"
|
2009-07-21 17:07:30 +00:00
|
|
|
|
|
2011-07-13 14:18:09 +00:00
|
|
|
|
%.o: %.c include/%.h
|
2013-06-18 16:14:38 +00:00
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
|
2009-07-21 18:45:05 +00:00
|
|
|
|
@echo " CC $<"
|
2009-06-17 20:08:33 +00:00
|
|
|
|
|
2009-10-12 07:59:11 +00:00
|
|
|
|
all: i3status manpage
|
|
|
|
|
|
2009-10-11 20:11:09 +00:00
|
|
|
|
i3status: ${OBJS}
|
2013-06-18 16:14:38 +00:00
|
|
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
|
2009-07-21 18:45:05 +00:00
|
|
|
|
@echo " LD $@"
|
2008-10-07 13:33:54 +00:00
|
|
|
|
|
2018-06-19 14:56:48 +00:00
|
|
|
|
test: i3status
|
|
|
|
|
LC_ALL=C ./travis/run-tests.pl
|
|
|
|
|
|
2008-10-07 13:33:54 +00:00
|
|
|
|
clean:
|
2009-07-21 17:07:30 +00:00
|
|
|
|
rm -f *.o src/*.o
|
2008-10-07 13:33:54 +00:00
|
|
|
|
|
|
|
|
|
distclean: clean
|
2012-05-02 15:27:20 +00:00
|
|
|
|
rm -f i3status man/i3status.1
|
2008-10-04 17:32:35 +00:00
|
|
|
|
|
2009-10-12 07:59:11 +00:00
|
|
|
|
manpage:
|
2011-07-13 14:18:09 +00:00
|
|
|
|
$(MAKE) -C man
|
2009-10-12 07:59:11 +00:00
|
|
|
|
|
2008-10-04 17:32:35 +00:00
|
|
|
|
install:
|
2011-08-31 22:56:45 +00:00
|
|
|
|
install -m 755 -d $(DESTDIR)$(PREFIX)/bin
|
|
|
|
|
install -m 755 -d $(DESTDIR)$(SYSCONFDIR)
|
2015-04-08 00:28:07 +00:00
|
|
|
|
install -m 755 -d $(DESTDIR)$(MANPREFIX)/share/man/man1
|
2011-08-31 22:56:45 +00:00
|
|
|
|
install -m 755 i3status $(DESTDIR)$(PREFIX)/bin/i3status
|
|
|
|
|
install -m 644 i3status.conf $(DESTDIR)$(SYSCONFDIR)/i3status.conf
|
2015-04-08 00:28:07 +00:00
|
|
|
|
install -m 644 man/i3status.1 $(DESTDIR)$(MANPREFIX)/share/man/man1
|
2008-10-04 17:32:35 +00:00
|
|
|
|
|
2008-10-24 19:29:00 +00:00
|
|
|
|
release:
|
2009-05-01 17:57:09 +00:00
|
|
|
|
[ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}
|
|
|
|
|
mkdir i3status-${VERSION}
|
2016-01-01 18:49:04 +00:00
|
|
|
|
find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "README.md" -or -name "Makefile" -or -name "LICENSE" -or -name "CHANGELOG" \) -exec cp '{}' i3status-${VERSION} \;
|
2009-10-16 18:46:45 +00:00
|
|
|
|
mkdir i3status-${VERSION}/src
|
|
|
|
|
mkdir i3status-${VERSION}/man
|
|
|
|
|
find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \;
|
2009-10-23 22:43:02 +00:00
|
|
|
|
find man -maxdepth 1 -type f \( -regex ".*\.\(1\|man\|conf\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION}/man \;
|
2010-09-22 22:19:59 +00:00
|
|
|
|
cp -r include i3status-${VERSION}
|
2012-05-04 10:31:28 +00:00
|
|
|
|
cp -r yajl-fallback i3status-${VERSION}
|
2012-10-03 11:44:34 +00:00
|
|
|
|
cp -r contrib i3status-${VERSION}
|
2017-01-21 14:53:09 +00:00
|
|
|
|
echo ${I3STATUS_VERSION} > i3status-${VERSION}/I3STATUS_VERSION
|
2009-05-01 17:57:09 +00:00
|
|
|
|
tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
|
|
|
|
|
rm -rf i3status-${VERSION}
|