rohrpost

A commandline mail client to change the world as we see it.
git clone git://r-36.net/rohrpost
Log | Files | Refs | LICENSE

config.mk (510B)


      1 # rohrpost metadata
      2 NAME = rohrpost
      3 VERSION = 0.5
      4 
      5 # Customize below to fit your system
      6 
      7 # paths
      8 PREFIX = /usr/local
      9 SHAREPREFIX= ${PREFIX}/share/${NAME}
     10 MANPREFIX = ${PREFIX}/share/man
     11 
     12 # includes and libs
     13 INCS = -I. -I/usr/include
     14 LIBS = -L/usr/lib -lc -lssl -lcrypto -lz -ldl
     15 
     16 # flags
     17 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE -D_GNU_SOURCE
     18 CFLAGS = -g -std=gnu99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
     19 LDFLAGS = -g ${LIBS}
     20 #LDFLAGS = -s ${LIBS}
     21 
     22 # compiler and linker
     23 CC = cc
     24