dvtm

Fork of dvtm, a minimal terminal multiplexer
git clone git://git.laack.co/dvtm.git
Log | Files | Refs | README | LICENSE

config.mk (408B)


      1 # Customize below to fit your system
      2 
      3 PREFIX ?= /usr/local
      4 MANPREFIX = ${PREFIX}/share/man
      5 # specify your systems terminfo directory
      6 # leave empty to install into your home folder
      7 TERMINFO := ${DESTDIR}${PREFIX}/share/terminfo
      8 
      9 INCS = -I.
     10 LIBS = -lc -lutil -lncursesw
     11 CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_XOPEN_SOURCE_EXTENDED
     12 CFLAGS += -std=c99 ${INCS} -DNDEBUG ${CPPFLAGS}
     13 
     14 CC ?= cc