edo

Experimental text editor.
Log | Files | Refs | LICENSE

config.mk (333B)


      1 # edo
      2 VERSION = 0.1
      3 
      4 # paths
      5 PREFIX = /usr/local
      6 MANPREFIX = ${PREFIX}/share/man
      7 
      8 # flags
      9 CPPFLAGS = -D_DEFAULT_SOURCE -DVERSION=\"${VERSION}\"
     10 CFLAGS   = -std=c99 -g -pedantic -Wall -O0 ${CPPFLAGS}
     11 LDFLAGS  = -lgrapheme
     12 #CFLAGS  = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${CPPFLAGS}
     13 
     14 # compiler and linker
     15 CC = cc