config.mk - libvt100 - A library for heling in console programming.
 (HTM) git clone git://r-36.net/libvt100
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       config.mk (402B)
       ---
            1 # libvt100 metadata
            2 NAME = libvt100
            3 VERSION = 0.2
            4 
            5 # Customize below to fit your system
            6 
            7 # paths
            8 PREFIX ?= /usr
            9 MANPREFIX = ${PREFIX}/share/man
           10 
           11 # includes and libs
           12 INCS = -I. -I/usr/include
           13 LIBS = -L/usr/lib -lc
           14 
           15 # flags
           16 CPPFLAGS = -DVERSION=\"${VERSION}\"
           17 CFLAGS = -g -fPIC -std=gnu99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
           18 LDFLAGS = -g ${LIBS}
           19 #LDFLAGS = -s ${LIBS}
           20 
           21 # compiler and linker
           22 CC = cc
           23