config.mk - sacc - sacc(omys), simple console gopher client
(HTM) git clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) 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_SOURCE
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 flags
39 # if your system does not provide asprintf() or strcasestr(), respectively.
40 #OSCFLAGS = -DNEED_ASPRINTF -DNEED_STRCASESTR