-
Notifications
You must be signed in to change notification settings - Fork 47
/
config.mk.def
33 lines (26 loc) · 898 Bytes
/
config.mk.def
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# config.mk - makefile configuration for sam
# copyright 2015 Rob King <[email protected]>
# CC is the C compiler to use
CC=gcc
CFLAGS?=
CFLAGS+=-std=c99
# STANDARDS names the C preprocessor defines that need to
# be present to get a more-or-less standard compilation
# environment.
#
# Mac OS X users need to add -D_DARWIN_C_SOURCE here.
STANDARDS=-D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=500
# DESTDIR is the root of the installation tree
DESTDIR?=/usr/local
# BINDIR is the directory where binaries go
BINDIR?=$(DESTDIR)/bin
# MANDIR is where manual pages go
MANDIR?=$(DESTDIR)/share/man/
# Add additional include and library directories
# BSD/Mac OS X users might need to add something like
# INCLUDES=-I/usr/X11R6/include -I/usr/X11R6/include/freetype2
# LDFLAGS=-L/usr/X11R6/lib
INCLUDES=-I/usr/include/freetype2
LDFLAGS=
# Set this to your default remote shell.
RXPATH=/usr/bin/ssh