tconfig.mk - catpoint - Catpoint simple presenting software.
 (HTM) git clone git://r-36.net/catpoint
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tconfig.mk (316B)
       ---
            1 # catpoint
            2 VERSION = 1.0
            3 
            4 # Customize below to fit your system
            5 
            6 # paths
            7 PREFIX = /usr/local
            8 MANPREFIX = ${PREFIX}/share/man
            9 
           10 # libs
           11 LIBS = -lncursesw
           12 # Gentoo
           13 #LIBS = -lncursesw -ltinfow
           14 
           15 # flags
           16 CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os
           17 LDFLAGS = -s ${LIBS}
           18 
           19 # compiler and linker
           20 CC = cc
           21