-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
32 lines (28 loc) · 1.07 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
NAME=cluless
VERSION=0.4.12
BUILD=.build
I_DIR=src
O_DIR=$(BUILD)/cache
BIN=$(BUILD)/bin/$(NAME)
PREFIX=/usr/local
BINPREFIX=$(PREFIX)/bin
MANPREFIX=$(PREFIX)/man/man1
O_FILES=$(O_DIR)/$(NAME).o \
$(O_DIR)/$(NAME)/bindings.o \
$(O_DIR)/$(NAME)/core.o \
$(O_DIR)/$(NAME)/core/client.o \
$(O_DIR)/$(NAME)/core/logging.o \
$(O_DIR)/$(NAME)/core/monitor.o \
$(O_DIR)/$(NAME)/core/workspace.o \
$(O_DIR)/$(NAME)/ewmh.o \
$(O_DIR)/$(NAME)/ewmh/docks.o \
$(O_DIR)/$(NAME)/layout.o \
$(O_DIR)/$(NAME)/layout/full.o \
$(O_DIR)/$(NAME)/layout/tall.o \
$(O_DIR)/$(NAME)/misc/companion.o \
$(O_DIR)/$(NAME)/misc/magnify.o \
$(O_DIR)/$(NAME)/misc/scratchpad.o \
$(O_DIR)/$(NAME)/misc/window_rule.o
PKGS=x11
DEFINE=-D_GNU_SOURCE -DNAME='"$(NAME)"' -DVERSION='"$(VERSION)"'
FLAGS=-Wall -Wextra -Wvla -pedantic -I$(I_DIR) -ggdb -O3