Introduction
Introduction Statistics Contact Development Disclaimer Help
config.mk - sacc - sacc - sacc(omys), simple console gopher client (config)
git clone git://git.codemadness.org/sacc
Log
Files
Refs
LICENSE
---
config.mk (929B)
---
1 # Install paths
2 PREFIX = /usr/local
3 MANDIR = $(PREFIX)/share/man/man1
4
5 # Default build flags
6 CFLAGS = -Os
7 LDFLAGS = -s
8
9 # Default version to put in the ident string
10 DEFVERSION = "1.07"
11
12 # UI type
13 # txt (textual)
14 #UI=txt
15 # ti (screen-oriented)
16 UI=ti
17 LIBS=-lcurses
18
19 # IO type
20 # clr (clear)
21 #IO = clr
22 # tls (Transport Layer Security)
23 IO = tls
24 IOLIBS = -ltls
25 IOCFLAGS = -DUSE_TLS
26
27 # OS compilation flags are used to expose the system interfaces
28 # Linux, OpenBSD
29 OSCFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE -D_GNU_SO…
30 OSLDFLAGS =
31 # NetBSD, using default pkgsrc path
32 #OSCFLAGS = -I/usr/pkg/include
33 #OSLDFLAGS = -L/usr/pkg/lib -R/usr/pkg/lib
34 # FreeBSD
35 #OSCFLAGS = -I/usr/local/include
36 #OSLDFLAGS = -L/usr/local/lib
37
38 # Define NEED_ASPRINTF and/or NEED_STRCASESTR in your OS compilation fla…
39 # if your system does not provide asprintf() or strcasestr(), respective…
40 #OSCFLAGS = -DNEED_ASPRINTF -DNEED_STRCASESTR
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.