pointtools

Simple point utilities to hold text presentations.
git clone git://r-36.net/pointtools
Log | Files | Refs | README | 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