File: config.mk

package info (click to toggle)
suckless-tools 40-1%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 728 kB
  • ctags: 651
  • sloc: ansic: 2,532; makefile: 465; sh: 104
file content (24 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# tabbed version
VERSION = 0.5

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

# includes and libs
LIBS = -lc -lX11

# flags
CPPFLAGS += -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
CFLAGS += -g -std=c99 -pedantic -Wall ${CPPFLAGS}
LDFLAGS += -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}

# compiler and linker
CC = cc