rofi/Makefile

46 lines
1.0 KiB
Makefile
Raw Normal View History

CFLAGS?=-Wall -Wextra -Os
2012-08-27 10:24:30 +00:00
PREFIX?=$(DESTDIR)/usr
BINDIR?=$(PREFIX)/bin
MANDIR?=$(PREFIX)/share/man/man1
2012-06-29 17:10:13 +00:00
2013-01-20 12:01:13 +00:00
# Check deps.
PKG_CONFIG?=$(shell which pkg-config)
ifeq (${PKG_CONFIG},${EMPTY})
$(error Failed to find pkg-config. Please install pkg-config)
endif
LDADD?=$(shell ${PKG_CONFIG} --cflags --libs x11 xinerama xft)
ifeq (${LDADD},${EMPTY})
$(error Failed to find the required dependencies: x11, xinerama, xft)
endif
I3?=$(shell which i3)
ifneq (${I3},${EMPTY})
$(info I3 mode is enabled)
CFLAGS+=-DI3
endif
2012-06-29 17:10:13 +00:00
all: normal
normal:
2013-02-04 13:35:23 +00:00
$(CC) -o simpleswitcher simpleswitcher.c -std=c99 $(CFLAGS) $(LDADD) $(LDFLAGS)
2012-06-29 17:10:13 +00:00
debug:
2013-02-04 13:35:23 +00:00
$(CC) -o simpleswitcher-debug simpleswitcher.c -std=c99 $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD)
2012-06-29 17:10:13 +00:00
2014-01-10 09:35:38 +00:00
install: normal install-man
2012-08-27 10:24:30 +00:00
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
install-man:
install -Dm 644 simpleswitcher.1 $(MANDIR)/simpleswitcher.1
2014-01-10 09:35:38 +00:00
gzip -f $(MANDIR)/simpleswitcher.1
2012-06-29 17:10:13 +00:00
clean:
rm -f simpleswitcher simpleswitcher-debug
2014-01-10 09:35:38 +00:00
indent:
@astyle --style=linux -S -C -D -N -H -L -W3 -f simpleswitcher.c textbox.c