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