URI: 
       config.mk - pointtools - Simple point utilities to hold text presentations.
  HTML git clone git://bitreich.org/pointtools/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/pointtools/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
       config.mk (381B)
       ---
            1 VERSION="0.3"
            2 
            3 # paths
            4 PREFIX = /usr/local
            5 MANPREFIX = ${PREFIX}/share/man
            6 
            7 # includes and libs
            8 INCS = -I. -I/usr/include
            9 
           10 # BSD
           11 #LIBS = -L/usr/lib -lc
           12 
           13 # flags
           14 # Linux
           15 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -DNEED_STRLCPY
           16 # BSD
           17 #CPPFLAGS = -DVERSION=\"${VERSION}\"
           18 
           19 CFLAGS += -std=c99 ${INCS} ${CPPFLAGS}
           20 LDFLAGS += ${LIBS}
           21 
           22 # compiler and linker
           23 # CC = cc