96334e2079
According to the FHS, /usr/local/share/man is the correct man page path in this projects's case. Set this to default in config.mk.
21 lines
366 B
Makefile
21 lines
366 B
Makefile
# slstatus version
|
|
VERSION = 0
|
|
|
|
# Customize below to fit your system
|
|
|
|
#paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
X11INC = /usr/X11R6/include
|
|
X11LIB = /usr/X11R6/lib
|
|
|
|
# flags
|
|
CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
|
|
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused -Os
|
|
LDFLAGS = -L$(X11LIB) -s
|
|
LDLIBS = -lX11
|
|
|
|
# compiler and linker
|
|
CC = cc
|