bspwm/Makefile
Bastien Dejean 8fd8521322 Rewrite message handling
The new message syntax:
- Provides 10 commands instead of 60.
- Allows multiple actions to be applied in one call.

The client now returns an non zero exit code when a message fails.

The `is_adjacent` function now handles vacant nodes.
2013-07-12 21:52:02 +02:00

59 lines
1.5 KiB
Makefile

VERSION = 0.7
CC = gcc
LIBS = -lm -lxcb -lxcb-icccm -lxcb-ewmh -lxcb-randr
CFLAGS += -std=c99 -pedantic -Wall -Wextra -I$(PREFIX)/include
CFLAGS += -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\"
LDFLAGS += -L$(PREFIX)/lib
PREFIX ?= /usr/local
BINPREFIX = $(PREFIX)/bin
MANPREFIX = $(PREFIX)/share/man
CPLPREFIX = $(PREFIX)/share/bash-completion/completions
WM_SRC = bspwm.c helpers.c settings.c types.c tree.c events.c window.c messages.c query.c restore.c rules.c ewmh.c
WM_OBJ = $(WM_SRC:.c=.o)
CL_SRC = bspc.c helpers.c
CL_OBJ = $(CL_SRC:.c=.o)
all: CFLAGS += -Os
all: LDFLAGS += -s
all: bspwm bspc
debug: CFLAGS += -O0 -g -DDEBUG
debug: bspwm bspc
include Sourcedeps
$(WM_OBJ) $(CL_OBJ): Makefile
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
bspwm: $(WM_OBJ)
$(CC) -o $@ $(WM_OBJ) $(LDFLAGS) $(LIBS)
bspc: $(CL_OBJ)
$(CC) -o $@ $(CL_OBJ) $(LDFLAGS) $(LIBS)
install:
mkdir -p "$(DESTDIR)$(BINPREFIX)"
cp -p bsp{wm,c} "$(DESTDIR)$(BINPREFIX)"
mkdir -p "$(DESTDIR)$(MANPREFIX)"/man1
cp -Pp doc/bsp{wm,c}.1 "$(DESTDIR)$(MANPREFIX)"/man1
mkdir -p "$(DESTDIR)$(CPLPREFIX)"
cp -p bash_completion "$(DESTDIR)$(CPLPREFIX)"/bspc
uninstall:
rm -f "$(DESTDIR)$(BINPREFIX)"/bsp{wm,c}
rm -f "$(DESTDIR)$(MANPREFIX)"/man1/bsp{wm,c}.1
rm -f "$(DESTDIR)$(CPLPREFIX)"/bspc
doc:
a2x -v -d manpage -f manpage -a revnumber=$(VERSION) doc/bspwm.1.txt
cat doc/header.txt doc/bspwm.1.txt > README.asciidoc
clean:
rm -f $(WM_OBJ) $(CL_OBJ) bsp{wm,c}
.PHONY: all debug install uninstall doc clean