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 (20 lines) | stat: -rw-r--r-- 323 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
# ssid version
VERSION = 0.1

# Customize below to fit your system

# paths
PREFIX = /usr/local

# includes and libs
LIBS = -lc

# flags
CFLAGS += -DVERSION=\"${VERSION}\" ${CPPFLAGS}
LDFLAGS += ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# compiler and linker
CC = cc
LD = ${CC}