nt

simple note taker
git clone git://edryd.org/nt
Log | Files | Refs | LICENSE

config.mk (356B)


      1 # nt version number
      2 VERSION = 0.0.0
      3 
      4 # paths
      5 PREFIX = /usr/local
      6 MANPREFIX = ${PREFIX}/share/man
      7 
      8 # includes and libraries
      9 INCS = -Iinclude
     10 LIBS = 
     11 
     12 # flags
     13 CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=600
     14 CFLAGS = -g -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS}
     15 LDFLAGS = -g ${LIBS}
     16 
     17 # compiler and linker
     18 CC = gcc
     19