config.mk - utf8expr - expr(1) for UTF-8
(HTM) git clone git://bitreich.org/utf8expr/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/utf8expr/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) LICENSE
---
config.mk (404B)
---
1 # nldev metadata
2 NAME = utf8expr
3 VERSION = 0.8
4
5 # Customize below to fit your system
6
7 # paths
8 PREFIX = /usr/local
9 MANPREFIX = ${PREFIX}/share/man
10
11 # includes and libs
12 INCS = -I. -I/usr/include
13 LIBS = -L/usr/lib -lc
14
15 # flags
16 CPPFLAGS = -DVERSION=\"${VERSION}\"
17 CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
18 LDFLAGS = -static -g ${LIBS}
19 #LDFLAGS = -s ${LIBS}
20
21 # compiler and linker
22 CC = cc
23