File: config.mk

package info (click to toggle)
sic 1.1-5
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, jessie, jessie-kfreebsd, sid, stretch, trixie, wheezy
  • size: 112 kB
  • ctags: 41
  • sloc: ansic: 255; makefile: 45
file content (20 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# sic version
VERSION = 1.1

# Customize below to fit your system

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

# includes and libs
INCS = -I. -I/usr/include
LIBS = -L/usr/lib -lc

# flags
CPPFLAGS+= -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
CFLAGS+= -std=c99 -pedantic ${INCS} ${CPPFLAGS}
LDFLAGS+= ${LIBS}

# compiler and linker
CC = cc