tim

small extendable personal assistant
git clone git://edryd.org/tim
Log | Files | Refs | LICENSE

config.mk (401B)


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