bspwm/Makefile
2012-10-03 23:06:31 +02:00

56 lines
1.2 KiB
Makefile

VERSION = 0.1
CC = gcc
LIBS = -lm -lxcb -lxcb-icccm -lxcb-ewmh
CFLAGS = -std=c99 -pedantic -Wall -Wextra
LDFLAGS = $(LIBS)
PREFIX ?= /usr/local
BINPREFIX = $(PREFIX)/bin
WM_SRC = bspwm.c events.c messages.c ewmh.c settings.c helpers.c tree.c types.c rules.c window.c
CL_SRC = bspc.c helpers.c
WM_OBJ = $(WM_SRC:.c=.o)
CL_OBJ = $(CL_SRC:.c=.o)
all: CFLAGS += -Os
all: LDFLAGS += -s
all: options bspwm bspc
debug: CFLAGS += -O0 -g -DDEBUG
debug: options bspwm bspc
options:
@echo "bspwm build options:"
@echo "CC = $(CC)"
@echo "CFLAGS = $(CFLAGS)"
@echo "LDFLAGS = $(LDFLAGS)"
@echo "PREFIX = $(PREFIX)"
.c.o:
@echo "CC $<"
@$(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<
bspwm: $(WM_OBJ)
@echo CC -o $@
@$(CC) -o $@ $(WM_OBJ) $(LDFLAGS)
bspc: $(CL_OBJ)
@echo CC -o $@
@$(CC) -o $@ $(CL_OBJ) $(LDFLAGS)
clean:
@echo "cleaning"
@rm -f $(WM_OBJ) $(CL_OBJ) bsp{wm,c}
install:
@echo "installing executable files to $(DESTDIR)$(BINPREFIX)"
@install -D -m 755 bspwm $(DESTDIR)$(BINPREFIX)/bspwm
@install -D -m 755 bspc $(DESTDIR)$(BINPREFIX)/bspc
uninstall:
@echo "removing executable files from $(DESTDIR)$(BINPREFIX)"
@rm -f $(DESTDIR)$(BINPREFIX)/bsp{wm,c}
.PHONY: all options clean install uninstall