kiwmi/config.mk

16 lines
281 B
Makefile
Raw Normal View History

2018-09-27 16:42:31 +02:00
VERBOSE = 0
PREFIX = /usr/local
BINPREFIX = $(PREFIX)/bin
MANPREFIX = $(PREFIX)/share/man
XSESSIONS = $(PREFIX)/share/xsessions
CC = gcc
LD = $(CC)
2018-09-27 16:42:31 +02:00
INCS = -Isrc/
2018-09-27 16:42:31 +02:00
CFLAGS = -std=c99 -Wall -Wextra -pedantic -Os -D_POSIX_C_SOURCE=2 $(INCS)
2018-10-02 19:17:35 +02:00
LDFLAGS = -lxcb
2018-09-27 16:42:31 +02:00
CPPFLAGS = -MD -MP