cgol

Conway's Game of Life
git clone git://git.bitsmanent.org/cgol
Log | Files | Refs | README | LICENSE

config.mk (350B)


      1 # cgol
      2 VERSION = 0.1
      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 -DVERSION=\"${VERSION}\"
     12 CFLAGS   = -std=c99 -g -pedantic -Wall -O0 ${CPPFLAGS}
     13 #CFLAGS  = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${CPPFLAGS}
     14 
     15 # compiler and linker
     16 CC = cc