circo

claudio's IRC oasis
git clone git://git.bitsmanent.org/circo
Log | Files | Refs | README | LICENSE

config.mk (379B)


      1 # circo
      2 VERSION = 0.2
      3 
      4 # Customize below to fit your system
      5 
      6 # paths
      7 PREFIX = /usr/local
      8 MANPREFIX = ${PREFIX}/share/man
      9 
     10 # flags
     11 CPPFLAGS = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\"
     12 #CFLAGS   = -std=c99 -g -pedantic -Wall -O0 ${CPPFLAGS} -DDEBUG
     13 CFLAGS  = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${CPPFLAGS}
     14 
     15 # compiler and linker
     16 CC = cc