bibleverse

Print verse(s) from the Bible
git clone git://git.janpasierb.com/bibleverse.git
Log | Files | Refs | README | LICENSE

config.mk (283B)


      1 # bibleverse version
      2 VERSION = 1.1
      3 
      4 # Customise below config to suit your system
      5 
      6 # Paths
      7 PREFIX = /usr/local
      8 SHAREPREFIX = ${PREFIX}/share
      9 MANPREFIX = ${SHAREPREFIX}/man
     10 
     11 LIBS = -lsqlite3
     12 
     13 # Flags
     14 CFLAGS = -std=c99 -pedantic -Wall
     15 LDFLAGS = ${LIBS}
     16 
     17 # Compilers and Linkers
     18 CC = cc